Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix config for crossover.
  • Loading branch information
shads2 committed May 5, 2018
1 parent db2205a commit 40b962f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/conf.py
Expand Up @@ -263,7 +263,7 @@ def __init__(self):
'crossed_indicator': os.environ.get('CROSSOVER_STD_CROSSOVER_{}_CROSSED_INDICATOR'.format(i), 'sma'),
'crossed_indicator_index': int(os.environ.get('CROSSOVER_STD_CROSSOVER_{}_CROSSED_INDICATOR_INDEX'.format(i), 0)),
'crossed_indicator_type': os.environ.get('CROSSOVER_STD_CROSSOVER_{}_CROSSED_INDICATOR_TYPE'.format(i), 'informants'),
'crossed_signal': os.environ.get('INDICATOR_EMA_CROSSOVER_{}_CROSSED_SIGNAL'.format(i), 'sma')
'crossed_signal': os.environ.get('CROSSOVER_STD_CROSSOVER_{}_CROSSED_SIGNAL'.format(i), 'sma')
} for i in range(int(os.environ.get('CROSSOVER_STD_CROSSOVER_NUM_INDICATORS', 1)))]
}

Expand Down

0 comments on commit 40b962f

Please sign in to comment.