UDAY_C_Santhakumar

UCS_Squeeze_Timing-V1

There is an important information the Squeeze indicator is missing, which is the Pre Squeeze entry. While the Bollinger band begins to curves out of the KC, The breakout usually happens. There are many instances that the Squeeze indicator will fire, after the Major move, I cant blame the indicator, thats the nature (lagging) of all indicators, and we have to live with it.

Therefore pre-squeeze-fire Entry can be critical in timing your entry. Timing it too early could result in stoploss if it turns against you, ( or serious burn on options premium), because we never know when the squeeze will fire with the TTM squeeze, But now We know. Its a little timing tool. Managing position is critical when playing options.

I will code the timing signal when I get some time.

Updated Versions -

Uday C Santhakumar
オープンソーススクリプト

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
study(title="UCS_Squeeze V1", shorttitle="UCS_SQZ-V1", overlay=false)
source = close
useTrueRange = input(true)
length = input(20, minval=1)
multkc = input(1.5)
ma = ema(source, length)
range = useTrueRange ? tr : high - low
rangema = ema(range, length)
upperkc = sma((0 + rangema * multkc),5)
lowerkc = sma((0 - rangema * multkc),5)
c = blue
u = plot(upperkc, color=c, title="Upper")
//plot(ma, color=c, title="Basis")
l = plot(lowerkc, color=c, title="Lower")
fill(u, l, color=c)

multbb = input(2.0, minval=0.001, maxval=50)
basis = sma(source, length)
dev = multbb * stdev(source, length)
upperbb = sma((0 + dev),5)
lowerbb = sma((0 - dev),5)
//plot(basis, color=red)
p1 = plot(upperbb, color=green)
p2 = plot(lowerbb, color=green)
fill(p1, p2, color = green)

sqzOn  = (lowerbb > lowerkc) and (upperbb < upperkc)
sqzOff = (lowerbb < lowerkc) and (upperbb > upperkc)
noSqz  = (sqzOn == false) and (sqzOff == false)

scolor = noSqz ? blue : sqzOn ? red : green 
plot(0, color=scolor, style=circles, linewidth=3, title = "Squeeze Status")