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)