I added 15 sec bars data series.
I added Swing indicator, using that bars array.
My strategy prints all the swing highs and lows found within the lookback period in my function that checks the swing levels from the Swing indicator.
I add Swing indicator to a separate chart using 15sec data, for comparison.
I'm using the correct BarsInProgress:
if (BarsInProgress == 5 && IsFirstTickOfBar)
{
UpdateSwingLevels15Sec();
}
A swing low shows up on the separate 15sec chart, marked by Swing indicator. Then it shows up 1-2 minutes later in the list of swings from the Swing Indicator that is added to my strategy.
Is my 15sec data series out of sync with my 200 tick (primary) data series?

Comment