Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
5minute count down
Collapse
X
-
5minute count down
Hey guys, I'm curious if I want to make an indicator that draws an arrow every 5 min, using Times[1][0] and Add (Period.Minute, 5); How would I write that? I just don't get it. Is there a way to write a Timer Code that can just do Something every "x" minutes"?Tags: None
-
Hello ginx10k,
Thank you for your inquiry.
If you would like to have your script draw an arrow at the bar close of a five minute secondary DataSeries, assuming CalculateOnBarClose is set to true, you can do this:
I would suggest taking a look at this section of the NinjaTrader help guide for further information about working with multiple time frames: http://ninjatrader.com/support/helpG...nstruments.htmCode:protected override void OnBarUpdate() { if (BarsInProgress == 1) // draw an arrow if the secondary DataSeries called OnBarUpdate (this is assuming that the five minute bar is at BarsArray[1]) DrawArrowUp(....); }
If you would like to draw an arrow based on a timer instead, I would suggest taking a look at the included BarTimer indicator as this indicator does utilize a timer.
Please, let us know if we may be of further assistance.Zachary G.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
213 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
125 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
145 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
228 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
189 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment