Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Detect Missing bars on State Historical

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

    Detect Missing bars on State Historical


    Hello,
    I want to develop an Indicator which applies the following formula:
    Code:
    Value[0] = Math.Long(Input[0] / Input[1]);

    seems easy right? the thing is... I need to capture missing bars to assign a value to Input on that specific timestamp

    Can a timer help me detect a bar that has not occurred on State.Historical and State.Realtime?
    Is there any other/better way to detect a missing bar?
    Is there a way to capture this missing bars by developing a new BarType?

    Thank you in advance,
    Lismar

    PD: I wrote this topic under General Development thread because this implementation may be done either on Indicators or on Strategies.

    #2
    Hello lismartin,

    Can you provide more detail about what you mean by missing bars? Is the data physically missing?

    For a script with OnBarUpdate it would have no means to know if data was missing, the bars being processed would call OnBarUpdate only for the bars which exist.

    For a bars type you would process the individual data points, to know some portion of data was missing would require checking the times from each data point and then determining if there was some gap of time or some criteria which would equate to missing data between the times. Other scripts could also check the bar timestamps but if there is no bar built for the given missing data then the script just does not process that bar/time.

    I look forward to being of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    558 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 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
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X