freqtrade/freqtrade

View on GitHub
freqtrade/templates/strategy_subtemplates/plot_config_full.j2

Summary

Maintainability
Test Coverage

@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'},
            }
        }
    }