Announcement

Collapse
No announcement yet.

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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    571 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    330 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    549 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    549 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X