UDAY_C_Santhakumar

UCS_3rd Friday

Simple script to show you a way to find 3rd Fridays (Monthly Options Expiry)
If that friday is a holiday, then it doesn't generate a signal. Futures & Forex trader need not to worry. I will fix it for the stock traders as well. Time is all I need.

as usual Good Luck for those who believe in it. Practice for those who believe in hard work. Think for those who believe in smart work. ;)

Uday C Santhakumar
Açık kaynak kodlu komut dosyası

Gerçek TradingView ruhuyla, bu betiğin yazarı, yatırımcının anlayabilmesi ve doğrulayabilmesi için onu açık kaynak olarak yayınladı. Yazarın eline sağlık! Bunu ücretsiz olarak kullanabilirsiniz, ancak bu kodun bir yayında yeniden kullanımı Kullanım Koşulları ile yönetilir. Bir grafikte kullanmak için favorilere ekleyebilirsiniz.

Feragatname

Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.

Bu komut dosyasını bir grafikte kullanmak ister misiniz?
// Created by UCSgears
// Simple script to show you a way to find 3rd Fridays (Weekly Options Expiry)
// If that friday is a holiday, then it doesn't generate a signal. Futures & Forex trader need not to worry. 
// I will fix it for the stock traders as well

study("UCS_3rd Friday", overlay = true)

x = dayofmonth < 22 and dayofmonth > 14
y = dayofweek == 6 ? 1 : 0
z = x and y ? 1 : 0

plotshape(z, style = shape.xcross, location = location.top, title="Find me 3rd Friday")