add heikenashi reversal bullish trigger to hyperopt

This commit is contained in:
Janne Sinivirta
2018-01-16 13:53:30 +02:00
parent ce963aae58
commit 8896b39231
2 changed files with 3 additions and 2 deletions

View File

@@ -211,14 +211,12 @@ def populate_indicators(dataframe: DataFrame) -> DataFrame:
# Chart type
# ------------------------------------
"""
# Heikinashi stategy
heikinashi = qtpylib.heikinashi(dataframe)
dataframe['ha_open'] = heikinashi['open']
dataframe['ha_close'] = heikinashi['close']
dataframe['ha_high'] = heikinashi['high']
dataframe['ha_low'] = heikinashi['low']
"""
return dataframe