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
Open-source Skript

Ganz im Spirit von TradingView hat der Autor dieses Skripts es als Open-Source veröffentlicht, damit Trader es besser verstehen und überprüfen können. Herzlichen Glückwunsch an den Autor! Sie können es kostenlos verwenden, aber die Wiederverwendung dieses Codes in einer Veröffentlichung unterliegt den Hausregeln. Sie können es als Favoriten auswählen, um es in einem Chart zu verwenden.

Haftungsausschluss

Die Informationen und Veröffentlichungen sind nicht als Finanz-, Anlage-, Handels- oder andere Arten von Ratschlägen oder Empfehlungen gedacht, die von TradingView bereitgestellt oder gebilligt werden, und stellen diese nicht dar. Lesen Sie mehr in den Nutzungsbedingungen.

Möchten Sie dieses Skript auf einem Chart verwenden?
// 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")