OPEN-SOURCE SCRIPT

My script

63
//version=5

indicator("200-Day Volume MACD Oscillator", overlay=false)


length = 200

vol_avg = ta.sma(volume, length)

oscillator = volume - vol_avg


plot(oscillator, style=plot.style_histogram, color=oscillator >= 0 ? color.green : color.red, title="Volume MACD Oscillator")

Clause de non-responsabilité

Les informations et publications ne sont pas destinées à être, et ne constituent pas, des conseils ou recommandations financiers, d'investissement, de trading ou autres fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.