MagnusTradingGroup

MAGNUS® Cycles

This indicator will help you if you struggle making any profit in bitcoin.
It generates very few signals with very nice profit potential ( around 100% this year ! ).
Perfect tool for longterm swing traders and new traders that need help figuring out the midterm trend.

Use it with these parameters only:
weekly: 13, 5, 12
daily: 92, 21, 96
Script de código aberto

Dentro do verdadeiro espírito TradingView, o autor deste script publicou ele como um script de código aberto, para que os traders possam compreender e checar ele. Um viva ao autor! Você pode usá-lo gratuitamente, mas a reutilização deste código em uma publicação é regida pelas Regras da Casa. Você pode favoritá-lo para usá-lo em um gráfico.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.

Quer usar esse script no gráfico?
study(title="MAGNUS® Cycles", shorttitle="MAGNUS® Cycles")
//try these parameters/timeframes:
//weekly: 13,  5, 12
//daily:  92, 21, 96

length = input(92, minval=1, title="Williams %R Length")
upper = highest(length)
lower = lowest(length)
out = 100 * (close - upper) / (upper - lower)

len0 = input(21, minval=1, title="EMA Short Length")
len1 = input(96, minval=1, title="SMA Long Length ")

m0 = ema(out, len0)
m1 = sma(out, len1)

col = m0>m1?aqua:fuchsia

plot(out, color = green)
plot(m0, color = white)
plot(m1, color=orange)
band1 = hline(-20)
band0 = hline(-80)
fill(band1, band0)
bgcolor(col,transp=90)