Start by collecting 1-minute data for US stocks. Create a bundle called 'usstock-1min':
from quantrocket.zipline import create_usstock_bundle
create_usstock_bundle("usstock-1min")
{'status': 'success', 'msg': 'successfully created usstock-1min bundle'}
Then ingest the data:
from quantrocket.zipline import ingest_bundle
ingest_bundle("usstock-1min")
{'status': 'the data will be ingested asynchronously'}
Use flightlog to monitor the progress:
quantrocket.zipline: INFO [usstock-1min] Ingesting minute bars for 18638 securities in usstock-1min bundle
quantrocket.zipline: INFO [usstock-1min] Ingesting daily bars for usstock-1min bundle
quantrocket.zipline: INFO [usstock-1min] Ingesting adjustments for usstock-1min bundle
quantrocket.zipline: INFO [usstock-1min] Ingesting assets for usstock-1min bundle
quantrocket.zipline: INFO [usstock-1min] Completed ingesting data for 18638 securities in usstock-1min bundle