Add 29 optional indicators populate_indicators()

This commit is contained in:
Gerald Lonlas
2018-01-06 01:11:01 -08:00
parent 41933c31ca
commit 297166fcb9
2 changed files with 169 additions and 22 deletions

View File

@@ -189,7 +189,7 @@ def buy_strategy_generator(params):
# TRIGGERS
triggers = {
'lower_bb': dataframe['tema'] <= dataframe['blower'],
'lower_bb': dataframe['tema'] <= dataframe['bb_lowerband'],
'faststoch10': (crossed_above(dataframe['fastd'], 10.0)),
'ao_cross_zero': (crossed_above(dataframe['ao'], 0.0)),
'ema5_cross_ema10': (crossed_above(dataframe['ema5'], dataframe['ema10'])),