UDAY_C_Santhakumar

UCS_Option Expiry

This is an update to two indicators.


The Blue Label would be the Weekly Options Expiry
The Orange Label would be the Monthly Options Expiry.

And you have a choice to pick.

------------------------


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

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

免責事項

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

チャートでこのスクリプトを利用したいですか?
// Update to Friday's Indicator

study("UCS_Option Expiry", overlay = true, precision = 0)

ew = input(true, title = "Weekly Expiry")
em = input(false, title = "Montly Expiry")

x = isdaily and dayofweek == 6
a = (dayofweek[1] == 5 and dayofweek == 2) or (dayofweek[1] == 5 and dayofweek == 3)

y = isdaily and dayofmonth < 22 and dayofmonth > 14

xoe = em == 1 and ((y and a) or (y and x)) ? 1 : 0
xwe = ew == 1 and (x or a) ? 2 : 0

icolor = xoe == 1 ? orange : xwe == 2 ? aqua : na 

expiry = xoe or xwe

plotshape(expiry, style = shape.labeldown, location = location.top, color = icolor, title = "Option Expiry", text = "Expiry" , textcolor = black)