Yes
I need ticker data (last-price) from Binance. However, the received ticker object from the dataprovider is None. On the other side, the orderbook object is received correctly.
if self.dp:
if self.dp.runmode.value in ('live', 'dry_run'):
ticker = self.dp.ticker(metadata['pair'])
dataframe['last_price'] = ticker['last']
in populate_indicators
dataframe['last_price'] = ticker['last']
TypeError: 'NoneType' object is not subscriptable
2020-05-23 06:44:35,056 - freqtrade.strategy.interface - WARNING - Unable to analyze candle (OHLCV) data for pair Z
EC/USDT: 'NoneType' object is not subscriptable
2020-05-23 06:44:35,078 - freqtrade.strategy.strategy_wrapper - ERROR - Unexpected error 'NoneType' object is not subscriptable
Please fill out the version template in the issue completely (which version are you running)...
Without that we'll be unable to support you.
Thanks for your understanding.
Please fill out the version template in the issue completely (which version are you running)...
Without that we'll be unable to support you.
Thanks for your understanding.
I have updated the environment.
Please fill out the version template in the issue completely (which version are you running)...
Without that we'll be unable to support you.
Thanks for your understanding.I have updated the environment.
Update: I have updated my freqtrade version via _./setup.sh --update_ and now the ticker works. However, in docker master-branch ticker is still not available for binance (docker develop-branch works as well).
Well that's not a problem but intentional.
The feature you're trying to use was merged in #3267 - ten days ago.
We'll do a new release soonish - but master is the stable branch - with roughly one release per month.
If you're trying to use newer features, use develop.