Open kooomix opened 6 years ago
Hi @kooomix ,
Please provide more details on the parameters you are using in your algorithm (mode, exchange, etc).
Thanks,
Lena
Algo parameters: capital_base=CAPITAL_BASE, data_frequency='minute', initialize=initialize, handle_data=handle_data, analyze=analyze, exchange_name='poloniex', algo_namespace=NAMESPACE, quote_currency='btc', start=pd.to_datetime('2017-1-1', utc=True), end=pd.to_datetime('2018-1-1', utc=True)
Error that I get (for ingested symbol): PricingDataNotLoadedError Traceback (most recent call last)
Hi @kooomix , thanks for reporting this, we will address this.
Hi,
I have ingested all data for my symbols and ran a back-test in which I use data.history to get the data for all symbols in one request. The issues is that if one of the symbols have no data for the requested period (because that symbol started to be traded after this date) it returns error instead of what I believe it should do (according to zipline documentation) - returning NAN for these specific symbols.
Help on the matter is appreciated. Thanks.