A CHANGE of background color indicates a trade opportunity :
Cyan background = BUY
Purple background = SELL

The bullish signals seem to be better than the bearish ones.

Based on the "Willy" indicator.
Don't change the parameters unless you fully understand the consequences.

Use with brains and caution :)
Script open-source

Dans le véritable esprit de TradingView, l'auteur de ce script l'a publié en open-source, afin que les traders puissent le comprendre et le vérifier. Bravo à l'auteur! Vous pouvez l'utiliser gratuitement, mais la réutilisation de ce code dans une publication est régie par le règlement. Vous pouvez le mettre en favori pour l'utiliser sur un graphique.

Clause de non-responsabilité

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

Vous voulez utiliser ce script sur un graphique ?
study(title="MAGNUS™", shorttitle="MAGNUS™")

length = input(21, minval=1)
upper = highest(length)
lower = lowest(length)

out = 100 * (close - upper) / (upper - lower)
src = out, len = input(54, minval=1, title="MA Short Length")
lenm2 = input(13, minval=1, title="MA Long Length")
len0 = input(8, minval=1, title="Willy Smoothing")

m0 = ema(out, len0)
m1 = ema(out, len)
m2 = sma(out,lenm2)
col = m0>m1?aqua:fuchsia

plot(out, color = green)
plot(m0, color = white)
plot(m2, color = red)
plot(m1, title="EMA", color=orange)
band1 = hline(-20)
band0 = hline(-80)
fill(band1, band0)
bgcolor(col,transp=92)