freqtrade_origin/freqtrade/templates/strategy_subtemplates/plot_config_full.j2

21 lines
506 B
Plaintext
Raw Normal View History

2020-01-08 18:35:00 +00:00
@property
def plot_config(self):
return {
# Main plot indicators (Moving averages, ...)
"main_plot": {
"tema": {},
"sar": {"color": "white"},
2020-01-08 18:35:00 +00:00
},
"subplots": {
# Subplots - each dict defines one additional plot
"MACD": {
"macd": {"color": "blue"},
"macdsignal": {"color": "orange"},
},
"RSI": {
"rsi": {"color": "red"},
}
2020-01-08 18:35:00 +00:00
}
}