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
Script open-source

Nello spirito di condivisione promosso da TradingView, l'autore (al quale vanno i nostri ringraziamenti) ha deciso di pubblicare questo script in modalità open-source, così che chiunque possa comprenderlo e testarlo. Puoi utilizzarlo gratuitamente, ma il riutilizzo del codice è subordinato al rispetto del Regolamento. Per aggiungerlo al grafico, mettilo tra i preferiti.

Declinazione di responsabilità

Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.

Vuoi usare questo script sui tuoi grafici?
// 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)