Prior starting live trading session, most strategies that use indicators will need some level of historical data backfill to fire up those indicators.
For exchanges that doesn't support OHLCV using 'backfill_start' is not an option.
backfill_start is also limited to the exchange ability to provide long historical data records.
therefore I propose implementing 'backfill_from', which will give the user the ability to load the historical data from a file instead of using a 'backfill_start'.
Notes:
- example for 'backfill_from' can be found on feed\ibdata.py
- if exchange doesn't support OHLCV data will be collected as ticks. question is how to stitch with history data in minute resolution?
This discussion has been open to gather ideas for future development