Context: I was backtesting a BTCUSDT strategy successfully and decided I wanted to try to try it on ETHUSDT. I imported the ETHUSDT candles, changed the routing params, and attempted to run the backtest. However, I ended up getting this error:
============================== EXCEPTION TRACEBACK:
File "/Library/Frameworks/Python.framework/Versions/3.8/bin/jesse", line 8, in <module>
sys.exit(cli())
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/click/core.py", line 764, in __call__
return self.main(*args, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/click/core.py", line 717, in main
rv = self.invoke(ctx)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/click/core.py", line 1137, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/click/core.py", line 956, in invoke
return ctx.invoke(self.callback, **ctx.params)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/click/core.py", line 555, in invoke
return callback(*args, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/jesse/__init__.py", line 286, in backtest
backtest_mode.run(start_date, finish_date, chart=chart, tradingview=tradingview)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/jesse/modes/backtest_mode/__init__.py", line 58, in run
simulator(candles)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/jesse/modes/backtest_mode/__init__.py", line 192, in simulator
_simulate_price_change_effect(short_candle, exchange, symbol)
File "/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/jesse/modes/backtest_mode/__init__.py", line 313, in _simulate_price_change_effect
p.current_price = real_candle[2]
=========================================================================
Uncaught Exception: AttributeError: 'NoneType' object has no attribute 'current_price'
Anyone have experience with issues like this?