Any one explaining will b appreciated. Thx Sam
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
three bar reversal indicator - Typo errors correcetd
Collapse
X
-
three bar reversal indicator - Typo errors correcetd
What exact condition constitutes a three bar reversal. The two parameters in the indicator Three Bar Down = Cyan and Three Bar Up = Gold I am not sure what exactly it means? The rest of the parameters are obvious.
Any one explaining will b appreciated. Thx SamTags: None
-
Hi sam777,
Hopefully some other users can shed some light on this.
As an FYI, this is in reference to the indicator listed at - http://www.ninjatrader-support2.com/...d=1&linkid=165TimNinjaTrader Customer Service
-
I recommend clicking on the name of the author (far right link in blue in the file sharing section of this forum).
Last edited by mountainclimber; 05-07-2010, 10:08 AM.
Comment
-
three bar reversal
Tim/Mountainclimber;
I have emailed the creator of this indicator but no luck.
Also, Tim no one has replied withe answer to my question. I don't know what to do. Hopefully, some one will address my question - just the two Three bar up = gold and Three bar Down = Cyan - what exact conditions it fulfills?
Thx Sam
Comment
-
Sam,
Can you sort out the color system from the below?
[0] -> current building bar, [1]-> the bar prior to the current bar.
(I added notes so you could understand, except for up and down bars which you can figure out by the variable name I think...)
private Color upcolor = Color.Gold;
private Color dncolor = Color.Cyan;
if (Close[0] == Open[0])
BarColor = Color1; //black
elseif (Close[0] > High[1])
BarColor = Color2;//spring green
elseif (Close[0] < Low[1])
BarColor = Color3;//red
elseif (Close[0] > Open[0])
BarColor = Color4;//forest green
elseif (Close[0] < Open[0])
BarColor = Color5;//firebrick
Last edited by mountainclimber; 05-07-2010, 10:08 AM.
Comment
-
3 bar reversal- mountainclimber
I am not sure what you ae suggesting by sorting out colors. I have no problems with the color or what exactly the condition it means.
The only issue is what exactly it means displaying the 3 bar up and 3 bar down (conditions it fulfills)? The rest such as close < open...., close > open.....etc and their respective colors is not the issue.
Thx Sam
Comment
-
I have not read what the indicator does but in general a 3 bar reversal means that 3 bars counter to the previous trend means that the original trend is now finished.
For example, when ES plunged on Thursday 3 consecutive one minute bars which were green meant that the plunge was over. Now if I could have traded on that...
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
43 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
25 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|
||
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
163 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
98 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
158 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|

Comment