Profit+Loss+Time

MikeV99

New member
Plus
Code:
If MP >= value & Date/Time < Target then Sell Option - Profit Target
If MP < value & Date/Time < Target then Sell Option - Stop Loss
If Date/Time >= Target Sell Option at Mkt

Is it possible to put this logic in a single OCO, If Yes, How?

If this is the wrong forum, apologies -- what would be the best one?

Thank you for the hard work?

Mike
 
Last edited by a moderator:
Solution
If MP >= value & Date/Time < Target then Sell Option - Profit Target
If MP < value & Date/Time < Target then Sell Option - Stop Loss
If Date/Time >= Target Sell Option at Mkt

Is it possible to put this logic in a single OCO, If Yes, How?

If this is the wrong forum, apologies -- what would be the best one?

Thank you for the hard work?

Mike
Thinkorswim specifically, its ordinary OCO template is not a dependable way to package all three exits into one unattended order. The profit target and stop can be OCO, but the time-based market liquidation generally needs a separate conditional order or manual/automated handling. Also, an option market order can fill badly when the spread is wide; a marketable limit order is usually safer...
If MP >= value & Date/Time < Target then Sell Option - Profit Target
If MP < value & Date/Time < Target then Sell Option - Stop Loss
If Date/Time >= Target Sell Option at Mkt

Is it possible to put this logic in a single OCO, If Yes, How?

If this is the wrong forum, apologies -- what would be the best one?

Thank you for the hard work?

Mike
Thinkorswim specifically, its ordinary OCO template is not a dependable way to package all three exits into one unattended order. The profit target and stop can be OCO, but the time-based market liquidation generally needs a separate conditional order or manual/automated handling. Also, an option market order can fill badly when the spread is wide; a marketable limit order is usually safer.

Just a note -
There is an important flaw in the conditions as written:

If MP >= value before Target → Sell
If MP < value before Target → Sell

Those two conditions cover every possible market price, so one sell condition will be true immediately. You need two different values:

If option MP >= ProfitTarget before Deadline:
Sell option at limit/market
Else if option MP <= StopLoss before Deadline:
Sell option at stop/market
Else if Date/Time >= Deadline:
Sell option at market


For example:

Profit target: MP >= $5.00
Stop loss: MP <= $2.00
Time exit: Friday at 2:30 PM


The practical order structure is:

OCA Group
├── SELL LIMIT at $5.00
├── SELL STOP at $2.00
└── Timed SELL MARKET at Friday 2:30 PM

A conventional OCO contains only the profit target and stop loss. The timed exit requires either:
  • A broker-supported third order in the same cancellation group, or
  • Automation that cancels the OCO and submits a market order at the deadline.
 
Solution

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

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
4692 Online
Create Post

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