add CCI to hyperopt

This commit is contained in:
Janne Sinivirta
2017-10-20 13:14:28 +03:00
parent 3f7a583de6
commit 0fbca8b8ef
2 changed files with 7 additions and 0 deletions

View File

@@ -40,6 +40,7 @@ def populate_indicators(dataframe: DataFrame) -> DataFrame:
dataframe['sma'] = ta.SMA(dataframe, timeperiod=40)
dataframe['tema'] = ta.TEMA(dataframe, timeperiod=9)
dataframe['mfi'] = ta.MFI(dataframe)
dataframe['cci'] = ta.CCI(dataframe)
return dataframe