How would I go about using the Time[0] function for this, thanks.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Print data once per x minutes
Collapse
X
-
Hello brucelevy,
Thanks for the post.
You can check the Minute property of the DateTime object to print out when the Minute property has incremented.
Example:
You will have to make sure that your indicator's CalculateOnBarClose property is set to false so that the OnBarUpdate function will run on each tick.Code:public class TimeSpanning : Indicator { private int startmin; ... protected override void OnStartUp() { startmin = Time[0].Minute; } protected override void OnBarUpdate() { if(Time[0].Minute != startmin) { Print("Its been a minute"); startmin = Time[0].Minute; } }
A more reliable alternative would be to look at the BarTimer example indicator. This shows you how to set up a timer that does not depend on OnBarUpdate running.
Please let us know if we may be of any further assistance.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
619 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
420 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
293 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
415 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
367 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment