Course Name: [Trading in Milliseconds: MFT Strategies]
For the Capstone Project Solution,
indices_within_lookback_bars = [j for j in indices if j >= start_index and j < current_index]
Should we use j <= current_index instead of j < current_index? As current _index should also be included in the lookback period?
Thanks !