I'm trying to run the Zipline "crossover" strategy from the docs:
$ quantrocket master get -e XJPX | quantrocket master universe xjpx -f -
$ quantrocket zipline create-bundle-from-db xjpx-eod-bundle --from-db xjpx-eod --calendar TSEJ --start-date 2007-01-01 --universe xjpx
$ quantrocket zipline ingest xjpx-eod-bundle # How do you tell when this is done?
$ quantrocket zipline default-bundle xjpx-eod-bundle
$ quantrocket zipline backtest crossover --bundle xjpx-eod-bundle -s 2007-01-01 -e 2020-01-01 -o dma_results.csv
msg: SQLite file '/var/lib/quantrocket/zipline/data/xjpx-eod-bundle/2020-01-01T00;00;00/adjustments.sqlite'
doesn't exist.
status: error
Flightlog says:
2020-06-27 08:53:13 quantrocket.zipline: INFO [xjpx-eod-bundle] Ingesting xjpx-eod-bundle bundle
And nothing else that looks relevant... I left it alone for 24 hours.
If I connect to the zipline container, I see this... sizes seem suspiciously small:
root@...:/# ls -al /var/lib/quantrocket/zipline/data/xjpx-eod-bundle/2020-01-01T00\;00\;00/
total 232
drwxr-xr-x 4 root root 4096 Jun 26 23:46 .
drwxr-xr-x 4 root root 4096 Jun 26 23:46 ..
-rw-r--r-- 1 root root 98304 Jun 26 23:46 assets-8.sqlite
-rw-r--r-- 1 root root 114688 Jun 26 23:46 assets-8.sqlite.tmp
drwxr-xr-x 2 root root 4096 Jun 26 23:46 daily_equities.bcolz
drwxr-xr-x 2 root root 4096 Jun 26 23:46 minute_equities.bcolz
What am I doing wrong here?