You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it's also possible to download using the Fetch module but downloading 1m candles from exchanges requires lots of calls which is usually slow, maybe it would be better for quickstart to use an Example1D strat that uses 1d timeframes such that one call per asset using fetch_ohlcv is enough, like
# fetch directly from the exchange# `sandbox=false` because we don't want fake candles
e =getexchange!(exchangeid(s), sandbox=false)
fetch_ohlcv(e, "1d", raw.(s.universe)) # fetches ohlcv candles from the exchange `e`, saves to storagefill!(s) # fills all the assets in the strategy universe loading candles from storage
Hello,
Currently following documentation but
The text was updated successfully, but these errors were encountered: