TIA!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
how do i go about creating this indicator?
Collapse
X
-
how do i go about creating this indicator?
i would like the indicator to generate a symbol each time a bar closes below the close of 4 bars ago and a different symbol each time a bar closes above the close of 4 bars ago. and if there are 9 bars which consecutively close below the close of 4 bars ago or if there are 9 bars which consecutively close above the close of 4 bars ago, to draw a line on the chart representing the true high of those 9 bars and the true low of those 9 bars respectively?
TIA!Tags: None
-
kaywai, a good start are our indicator coding tutorials - http://www.ninjatrader-support.com/H...verview18.html
For the consecutive closes condition, you could work with CountIf() - http://www.ninjatrader-support.com/H...6/CountIf.html
-
if (Close[0] > Close[4])
{
DrawArrowUp("MyArrowUp"+CurrentBar, 0, Low[0]- (TickSize) , Color.Blue);
}
if (Close[0] < Close[4])
{
DrawArrowDown("MyArrowDown"+CurrentBar, 0, High[0]+ (TickSize) , Color.Red);
}
here is some drawline code:
DrawLine("Line1"+ CurrentBar,false, 2, Low[1]+ (TickSize*2), 0, Low[1]+ TickSize *2, Color.Red, DashStyle.Solid, 4)
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
153 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
89 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
133 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
127 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment