• Get $40 off VIP by signing up for a free account! Sign Up

Deducting weekend days in Option DTE Calculation

peteqn62

New member
I create a 'Return on investment' column in the option chain to compare profitability of selling puts, the script is as following

def DTE = GetDaysToExpiration()-1;
def Strikeprice = GetStrike();
def ROI = bid/Strikeprice/DTE*360;
AddLabel(yes,AsPercent(ROI));


I notice that the output number become inaccurate on weekends, because on Saturday or Sunday, the calculation for this 'Day to Expiration' won't deduct weekend days, and stay as if it were still on last Friday. Is there a way to modify the script so when it is Saturday, DTE would minus 1 day; And when it is on Sunday, DTE would minus 2 days

In plain words, It would look something like

def DTE = if weekdays then GetDaysToExpiration()-1 else if Saturday then GetDaysToExpiration()-2 else if Sunday then GetDaysToExpiration()-3
 
A calendar isn't available in real time. There would need to be bars on Saturday and Sunday from which to work with. You can detect Sundays to a limited degree. This is accomplished by checking for forwardly offset trading in the futures market while the option itself is still stuck on Friday. It might only be useful for things like preparing for Monday on Sunday night though. Common liquidity issues with options further compound the problem, a given contract might not have even traded on Friday either. I am not aware of anything that trades on Saturdays, scans reveal no matching symbols.
 
Last edited:

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

I create a 'Return on investment' column in the option chain to compare profitability of selling puts, the script is as following

def DTE = GetDaysToExpiration()-1;
def Strikeprice = GetStrike();
def ROI = bid/Strikeprice/DTE*360;
AddLabel(yes,AsPercent(ROI));


I notice that the output number become inaccurate on weekends, because on Saturday or Sunday, the calculation for this 'Day to Expiration' won't deduct weekend days, and stay as if it were still on last Friday. Is there a way to modify the script so when it is Saturday, DTE would minus 1 day; And when it is on Sunday, DTE would minus 2 days

In plain words, It would look something like

def DTE = if weekdays then GetDaysToExpiration()-1 else if Saturday then GetDaysToExpiration()-2 else if Sunday then GetDaysToExpiration()-3

like joshua said, not sure when you would see data on a saturday or sunday?


this might work?
Code:
def dow = GetDayOfWeek();
def exdays = GetDaysToExpiration()-1;
def DTE = if dow >=1 and dow <= 5 then exdays else dte[1];

GetDayOfWeek()
https://toslc.thinkorswim.com/center/reference/thinkScript/Functions/Date---Time/GetDayOfWeek
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
304 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top