Looking for Options RoR/ROI, unusual activity

JKov

New member
Plus
Hello,

I recently came across a video where the author shared custom indicators, such as:

The open interest vs volume (OI / VOL) option script will display the difference in volume and open interest on each individual strike today. This can be used to quickly identify unusual option activity and those strikes which have significantly higher volume than is expected.

The option premium percent of underlying script (%UNDERLYING) will display the option premium as a percentage of the underlying stock. It's very similar to Return on Risk (ROR) but can also be used for call options.

The option percent change script will display how much the option contract has changed in value over a set time period. The script is set to 3 days, but can be adjusted to any time period you chose to measure.

However, his site is down.
Does anyone have or may know how to create these scripts?
Thank you
 
Solution
This scanner searches for actively traded put options on stocks that already passed my SPMO selling-puts momentum scan (a set of the top 50 stocks in the fund). It looks for puts with 7 to 60 days remaining until expiration, a bid and ask of at least $0.25, at least 50 contracts traded today, at least 25 contracts in open interest, and a delta between approximately −0.15 and −0.45. The delta range generally captures puts that are out of the money through moderately close to the stock price. Because the scan is intersected with my SPMO list, it focuses on stocks with favorable upward momentum rather than searching the entire market indiscriminately. The VOL/OI column compares today’s option volume with the contract’s existing open...
Hello,

I recently came across a video where the author shared custom indicators, such as:

The open interest vs volume (OI / VOL) option script will display the difference in volume and open interest on each individual strike today. This can be used to quickly identify unusual option activity and those strikes which have significantly higher volume than is expected.

The option premium percent of underlying script (%UNDERLYING) will display the option premium as a percentage of the underlying stock. It's very similar to Return on Risk (ROR) but can also be used for call options.

The option percent change script will display how much the option contract has changed in value over a set time period. The script is set to 3 days, but can be adjusted to any time period you chose to measure.

However, his site is down.
Does anyone have or may know how to create these scripts?
Thank you
What was the website's address? It may have been archived at archive.org
 
This scanner searches for actively traded put options on stocks that already passed my SPMO selling-puts momentum scan (a set of the top 50 stocks in the fund). It looks for puts with 7 to 60 days remaining until expiration, a bid and ask of at least $0.25, at least 50 contracts traded today, at least 25 contracts in open interest, and a delta between approximately −0.15 and −0.45. The delta range generally captures puts that are out of the money through moderately close to the stock price. Because the scan is intersected with my SPMO list, it focuses on stocks with favorable upward momentum rather than searching the entire market indiscriminately. The VOL/OI column compares today’s option volume with the contract’s existing open interest. A reading of 1.00 means today’s volume equals the number of contracts previously open. A reading of 2.00 means today’s volume is twice the existing open interest. Higher readings can indicate unusual activity because an unusually large number of contracts are trading compared with the contract’s established position base. Readings below 1.00 are generally less unusual, while readings above 1.00 deserve attention and readings above 2.00 may represent especially concentrated activity. A high VOL/OI ratio should not be interpreted by itself. A ratio can appear unusually high simply because open interest is very small. For example, volume of 100 against open interest of 20 produces a ratio of 5.00, but that is not necessarily more important than volume of 2,000 against open interest of 1,000. The strongest candidates normally combine a high ratio with meaningful absolute volume, substantial open interest, and a reasonably narrow bid-and-ask spread. The scanner also does not tell us whether traders are buying or selling the puts. Heavy put activity could represent bearish speculation, portfolio protection, traders closing old positions, or investors selling puts to collect premium. The ratio identifies activity that deserves investigation; it does not determine the direction or purpose of that activity. The option’s price movement, bid-and-ask behavior, the stock’s chart, and the next day’s change in open interest provide additional context. For selling puts, the scanner should be treated as a candidate generator rather than an automatic trade signal. After identifying a contract, examine the underlying stock’s trend and support levels, the strike’s distance below the current stock price, the premium received, the bid-and-ask spread, upcoming earnings, and the amount of capital required if assigned. The most attractive setup is generally an upward-trending stock pulling back toward support, with the selected put strike below that support, adequate premium, strong option liquidity, and a position size that remains manageable if the shares are assign.


then as an option hacker column:
Code:
# OPTION CHAIN / WATCHLIST COLUMN - TODAY'S VOLUME DIVIDED BY OPEN INTEREST
# Set column aggregation to DAY.

def optionVolume = volume;
def optionOpenInterest = open_interest();

plot Ratio =
    if optionOpenInterest > 0
    then optionVolume / optionOpenInterest
    else if optionVolume > 0 then 999
    else 0;

Ratio.AssignValueColor(
    if Ratio >= 5 then Color.MAGENTA
    else if Ratio >= 2 then Color.CYAN
    else if Ratio >= 1 then Color.GREEN
    else Color.GRAY
);

AssignBackgroundColor(
    if Ratio >= 5 then Color.GRAY
    else if Ratio >= 2 then Color.DARK_GREEN
    else if Ratio >= 1 then CreateColor(35, 70, 35)
    else Color.BLACK
);
 
Solution

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

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
1582 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