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 CarlTrading, 03-31-2026, 09:41 PM
|
1 response
83 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
45 views
0 likes
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
65 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
68 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
57 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment