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 sjsj2732, Yesterday, 04:31 AM
|
0 responses
32 views
0 likes
|
Last Post
by sjsj2732
Yesterday, 04:31 AM
|
||
|
Started by NullPointStrategies, 03-13-2026, 05:17 AM
|
0 responses
286 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
283 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
133 views
1 like
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
91 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|

Comment