Separate strategy subtemplates for better overview

This commit is contained in:
Matthias
2022-09-18 08:50:41 +02:00
parent ab78fb373a
commit faf84295a5
12 changed files with 12 additions and 12 deletions

View File

@@ -0,0 +1,20 @@
@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'},
}
}
}