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
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
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)