initialize() {
Add(PeriodType.Minute, 1)
}
onbarupdate() {
Print(Time[0] + " BarsInProgress " + BarsInProgress);
if (BarsInProgress == 0) {
Print(Time[0] + " BarsInProgress " + BarsInProgress);
}
No prints.
I have a strategy running that was making trades before adding second timeframe. It now outputs nothing, not prints, nothing.
I also have tried backtesting SampleIntrabarBacktest and it does not produce results and just hangs with downloading data.
What could I be doing wrong?

Comment