Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
uniRenko New date indicator
Collapse
X
-
uniRenko New date indicator
I have a session break to force a new Onbarupdate to end my day. My system runs perpetually. I want my strategy to know when it is a new day. It is my understanding that Time[0] is the date and time of the last completed bar. Thus it does not have the current date. If this is true then I need to wait for the second bar to end to know that that date has changed. Is there a way to know the date has changed with the first tick of the day short of changing my OnBarUpdate to be tick by tick. -
Hi Buttermilk,
Thanks for your post.
If you want to detect something on the first tick of the day, you will need to run the script on every tick.
If the script only runs when a bar closes, then it would not be possible to detect something after 1 tick.
You run the script with Calculate on bar close set to false, or you can use intra-bar granularity of 1 tick.
You could also use a timer that runs on an interval and check the current system time instead of the bar time. (DateTime.Now)
Below is a link to an example of intra-bar granularity.
http://www.ninjatrader.com/support/f...ead.php?t=6652
And attached is an example of using a timer.Attached FilesChelsea B.NinjaTrader Customer Service
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
73 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
152 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
100 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
288 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment