mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
21 lines
506 B
Django/Jinja
21 lines
506 B
Django/Jinja
|
|
@property
|
|
def plot_config(self):
|
|
return {
|
|
# Main plot indicators (Moving averages, ...)
|
|
"main_plot": {
|
|
"tema": {},
|
|
"sar": {"color": "white"},
|
|
},
|
|
"subplots": {
|
|
# Subplots - each dict defines one additional plot
|
|
"MACD": {
|
|
"macd": {"color": "blue"},
|
|
"macdsignal": {"color": "orange"},
|
|
},
|
|
"RSI": {
|
|
"rsi": {"color": "red"},
|
|
}
|
|
}
|
|
}
|