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
開源腳本

本著真正的TradingView精神,該腳本的作者將其開源發布,以便交易者可以理解和驗證它。為作者喝彩吧!您可以免費使用它,但在出版物中重複使用此代碼受網站規則的約束。 您可以收藏它以在圖表上使用。

免責聲明

這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。

想在圖表上使用此腳本?
// 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")