Skip to content

backfill_from not working? #2

Open
@junaidnasir

Description

@junaidnasir

Hi,
thanks for the package. I tried to run it with mt5 but to reduce the backfill time i tried running with backfill_from=data where data is a pandas feed. but it seems like backfill is not used and it gets everything from mt5.

# this works individually i.e if used with cerebro.adddata(backfill_data)
backfill_data = bt.feeds.PandasData(dataname=d2, datetime="datetime")
store = MTraderStore()
# this downloads all data from mt5 instead of using backfill_data
data = store.getdata(
    dataname="EURUSD",
    timeframe=bt.TimeFrame.Minutes,
    fromdate=start,
    compression=1,
    historical=True,
    backtfill_from=backfill_data,
)
cerebro.adddata(data)
cerebro.run()
cerebro.plot()

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions