remove copy()
from custom_info
example
`set_index` automatically copies if not stated otherwise with `inplace=True` > inplacebool, default False If True, modifies the DataFrame in place (do not create a new object). from: https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.set_index.html?highlight=set_index#pandas.DataFrame.set_index
This commit is contained in:
parent
862df2b431
commit
c9c039d640
@ -57,7 +57,7 @@ class AwesomeStrategy(IStrategy):
|
|||||||
dataframe['atr'] = ta.ATR(dataframe)
|
dataframe['atr'] = ta.ATR(dataframe)
|
||||||
if self.dp.runmode.value in ('backtest', 'hyperopt'):
|
if self.dp.runmode.value in ('backtest', 'hyperopt'):
|
||||||
# add indicator mapped to correct DatetimeIndex to custom_info
|
# add indicator mapped to correct DatetimeIndex to custom_info
|
||||||
self.custom_info[metadata['pair']] = dataframe[['date', 'atr']].copy().set_index('date')
|
self.custom_info[metadata['pair']] = dataframe[['date', 'atr']].set_index('date')
|
||||||
return dataframe
|
return dataframe
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user