Options Break-Even Price Scan


Category:
0
0

Hello. I am trying to scan for options based off the following criteria

  • Options premium is less than the underlying assets ATR
    • Would be nice to add multiplier option as well, as in ATR is 2x greater than the premium
  • The underlying assets current price is <3%  away from the options break-even price
    • Also with the ability to change the percentage.

The end results would be for the scan to show options strikes and expiration’s that fit the criteria above.  I have included a screenshot of a Options position in CVS I entered Friday that fit the criteria of

-ATR is greater than premium of option

– Stock is <2% away from the break-even price

 

 

Attachments:
Marked as spam
Posted by (Questions: 4, Answers: 0)
Asked on September 8, 2019 12:19 pm
675 views
0
Private answer

I don't think we can build a scan for this in Thinkorswim. Here is the first set of metrics we need to compare: ATR of the underlying stock and the theoretical (or last) price of the option

Using the study filter, we can very simply compute the ATR for the underlying stock. However in order to compute the theoretical price of the options requires that we use a function called "OptionPrice".

Details here:

https://tlc.thinkorswim.com/center/reference/thinkScript/Functions/Option-Related/OptionPrice.html

As user defined inputs we need to supply the following:

strike: getStrike()
isPut: isPut()
daysToExpiration: getDaysToExpiration()
underlyingPrice: close(getUnderlyingSymbol())
Volatility: imp_volatility(getUnderlyingSymbol())
isEuropean: isEuropean()
yield: getYield()
interestRate: getInterestRate()

You can see that in order to compute the theoretical options price we have a very narrow scope. You must know before hand, which strike price and days to expiration you want to target with your scan. Something I'm sure you were hoping the scan would accomplish for you.

Despite having the reputation for being one of the foremost platforms for trading options, the language for Thinkorswim is severely lacking in tools needed to accomplish very basic tasks related to options strategies.

Marked as spam
Posted by (Questions: 37, Answers: 4087)
Answered on September 9, 2019 11:34 am