Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

finding missing days on a chart

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    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 truncate

    #2
    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.
    Code:
    foreach(KeyValuePair<DateTime, string> holiday in TradingHours.Holidays)
    {
    	if(holiday.Key.Date != Time[0].Date)
    		Print("Today is not 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.

    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.
    JimNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by ScottW, Today, 06:09 PM
    0 responses
    2 views
    0 likes
    Last Post ScottW
    by ScottW
     
    Started by Board game geek, 10-29-2023, 12:00 PM
    14 responses
    244 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by Waxavi, 04-19-2024, 02:10 AM
    4 responses
    56 views
    0 likes
    Last Post sonia0101  
    Started by cmtjoancolmenero, Today, 03:58 PM
    0 responses
    9 views
    0 likes
    Last Post cmtjoancolmenero  
    Started by Segwin, 05-07-2018, 02:15 PM
    11 responses
    1,779 views
    0 likes
    Last Post aligator  
    Working...
    X