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

how to check a long history of tickdata is complete, when are gaps etc?

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

    how to check a long history of tickdata is complete, when are gaps etc?

    I bought and imported a large amount of tick data from disktrading.com and without going into whose fault it might be (disktrading, the historical data manager import or me myself) I have found gaps in the data, sometimes big gaps of days.

    I just found them by investigating strange trades in my back-testing results.

    I'm thinking of writing a strategy or an indicator that will identify the gaps for me so I can fill them in.

    Before I re-invent the wheel, I wanted to find out if someone's done this already.

    If not, then does anyone have a good idea of how to code the checking algorithm, and just as important, how to present the results?

    Thanks!

    #2
    Hello Adamus,

    You may get some ideas from this reference sample on working with Date / Time objects.

    Maybe create a TimeSpan object and compare that to a change in bars time stamp with Time


    PseudoCode Below:
    if (Time[0] - Time[1] > myTimeSpanValue)
    alertMe;

    You would have to do additional conversions to turn Time[0] into an integer.
    ToDay(Time[0]) will grab the Date.
    ToTime(Time[0]) will grab the Time.
    Last edited by NinjaTrader_RyanM1; 05-16-2010, 10:44 AM.
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by wzgy0920, Yesterday, 09:53 PM
    2 responses
    49 views
    0 likes
    Last Post wzgy0920  
    Started by Kensonprib, 04-28-2021, 10:11 AM
    5 responses
    191 views
    0 likes
    Last Post Hasadafa  
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,230 views
    0 likes
    Last Post xiinteractive  
    Started by andrewtrades, Today, 04:57 PM
    1 response
    14 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by chbruno, Today, 04:10 PM
    0 responses
    7 views
    0 likes
    Last Post chbruno
    by chbruno
     
    Working...
    X