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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
175 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
91 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
130 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
210 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
186 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment