Wavy Tunnel Trading Method
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study(title="Bungee", shorttitle="Bungee")

OverBought = hline(80)
OverSold = hline(20)

length1 = input(76, minval=1), smoothK1 = input(4, minval=1), smoothD1 = input(4, minval=1)
k1 = sma(stoch(close, high, low, length1), smoothK1)
plot(k1, color=orange)

length2 = input(3, minval=1), smoothK2 = input(3, minval=1), smoothD2 = input(3, minval=1)
k2 = sma(stoch(close, high, low, length2), smoothK2)
plot(k2, color=green)

length3 = input(16, minval=1), smoothK3 = input(3, minval=1), smoothD3 = input(3, minval=1)
k3 = sma(stoch(close, high, low, length3), smoothK3)
plot(k3, color=blue)

length4 = input(8, minval=1), smoothK4 = input(3, minval=1), smoothD4 = input(3, minval=1)
k4 = sma(stoch(close, high, low, length2), smoothK4)
plot(k4, color=red)

length5 = input(14, minval=1)
upper = highest(length5)
lower = lowest(length5)
WP = 100 * (upper - close) / (upper - lower)
plot(WP, color=purple)

length6 = input(2, minval=1)
up = rma(max(change(close), 0), length6)
down = rma(-min(change(close), 0), length6)
RSI = down == 0 ? 100 : up == 0 ? 0 : 100 - (100 / (1 + up / down))
plot(RSI, color=black)