I have a strategy that has Minute as the primary Data Series, and in my strategy, I add Seconds Data Series
else if (State == State.Configure)
{
AddDataSeries(BarsPeriodType.Second, 1);
}
In my strategy, I print out the time I receive the first second data, and for some stock tickers, I receive Seconds data 30 seconds after the the market opens, and can take more than 1 minute for other tickers. Initially, I thought the problem is caused by my brokerage, Charles Schwab, but today, I have the chart open, and saw the chart updates the price right when the market opens, but my strategy doesn't receive seconds data.
Are the strategies and charts getting the stock price from difference source?
Thanks

Comment