Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
finding missing days on a chart
Collapse
X
-
finding missing days on a chart
Is there a way to find out if there missing days on a chart. Ninjatrader doesn't chart weekends or long weekends. I have a truncation on my drawing because of the weekends and longweekends missing. I am drawing a fib line and because of the new years 30 , 31 and the 1 is missing so my lines truncateTags: None
-
Hello ballboy11,
Thanks for your question.
You could check the TradingHours template for holidays and you can also use a SessionIterator to identify a next available session.
For example, Holidays can be looped through and checked if the current day is a holiday, or if some day in the future is a holiday.
Depending on your implementation, it may be useful to create a check similar to this in a custom Timer event since there would not be any data iterating on a holiday.Code:foreach(KeyValuePair<DateTime, string> holiday in TradingHours.Holidays) { if(holiday.Key.Date != Time[0].Date) Print("Today is not a holiday."); }
I've included publicly available documentation on the items discussed and an example using a custom timer.
TradingHours - https://ninjatrader.com/support/help...adinghours.htm
SessionIterator - https://ninjatrader.com/support/help...oniterator.htm
SampleCustomEvents - https://ninjatrader.com/support/foru...ead.php?t=5965
Please let us know if you have any questions.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
160 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
307 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
245 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
348 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
178 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment