ATR ADR Indicator (with %) For ThinkOrSwim

I couldn't find one in this forum that was simple and showed percentages of the price. Plots both ADR and ATR with their percentages as labels.

Let me know if it can be improved.

Code:
declare lower;

input length = 14;

plot ATR = MovingAverage(AverageType.wilders, TrueRange(high, close, low), length);
ATR.SetDefaultColor(GetColor(8));

AddLabel (yes, "ATR:" + Round((ATR / close) * 100, 3) + "%", Color.WHITE);


AddLabel (yes, "ATR:" + round((ATR) , 3), Color.white);


plot ADR = MovingAverage(AverageType.wilders, high-low, length);
ADR.SetDefaultColor(GetColor(6));

AddLabel (yes, "ADR:" + round((ADR) , 3), Color.light_green);

AddLabel (yes, "ADR:" + Round((ADR / close) * 100, 3) + "%", Color.light_green);

ky8H7enh.jpg
This is great any way to make the ATR % Label into a watchlist column?
 

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

This is great any way to make the ATR % Label into a watchlist column?
I figured it out, Watchlist column for ATR as a percentage is posted below

declare lower;

input length = 14;

plot ATR = MovingAverage(AverageType.wilders, TrueRange(high, close, low), length);
ATR.SetDefaultColor(GetColor(8));

AddLabel (yes, "" + Round((ATR / close) * 100, 3) + "%", Color.WHITE);
 
@MColb Yes. Try the below code, make sure to change the length to however many bars you wish to use as the average.

Code:
# Scan for Average Daily Range of 14 bars to be > 5%
def length = 14;
plot scan = (average(high - low, length)/close*100) > 5;
Hello,

Would you be kindly enough to add another criteria where to filter out stock under $5 with 5% or less not showing on the scanner? Thank you very much.
 
Hello,

Would you be kindly enough to add another criteria where to filter out stock under $5 with 5% or less not showing on the scanner? Thank you very much.


To scan for Average Daily Range of 14 bars to be > 5% and price > $5
Ruby:
# Scan for Average Daily Range of 14 bars to be > 5%  and price > $5
def length = 14;
plot scan = (average(high - low, length)/close*100) > 5 and close>5 ;
 
@jng
I couldn't find one in this forum that was simple and showed percentages of the price. Plots both ADR and ATR with their percentages as labels.

Let me know if it can be improved.

Code:
declare lower;

input length = 14;

plot ATR = MovingAverage(AverageType.wilders, TrueRange(high, close, low), length);
ATR.SetDefaultColor(GetColor(8));

AddLabel (yes, "ATR:" + Round((ATR / close) * 100, 3) + "%", Color.WHITE);


AddLabel (yes, "ATR:" + round((ATR) , 3), Color.white);


plot ADR = MovingAverage(AverageType.wilders, high-low, length);
ADR.SetDefaultColor(GetColor(6));

AddLabel (yes, "ADR:" + round((ADR) , 3), Color.light_green);

AddLabel (yes, "ADR:" + Round((ADR / close) * 100, 3) + "%", Color.light_green);

View attachment 8194

@jngy2k. Thank you. I augmented the script with averages aid in comparing both these metrics with the averages for the same 14 day period. Thanks for your code in the first place

Code:
# ver 2 additions by Yesh Subramanian 9/21/25
# - Changed ATR labels to Color.YELLOW to correspond with the chart
# - Kept ADR labels as Color.LIGHT_GREEN (unchanged) to map with chart in darker green
# - Added Avg ATR labels as Color.WHITE to map with chart
# - Added Avg ADR labels to Color.GRAY to map with chart

declare lower;
input length = 14;

# ATR
plot ATR = MovingAverage(AverageType.WILDERS, TrueRange(high, close, low), length);
ATR.SetDefaultColor(GetColor(8));
AddLabel(yes, "ATR: " + Round(ATR, 3), Color.YELLOW);
AddLabel(yes, "ATR: " + Round((ATR / close) * 100, 3) + "%", Color.YELLOW);

# ADR
plot ADR = MovingAverage(AverageType.WILDERS, high - low, length);
ADR.SetDefaultColor(GetColor(6));
AddLabel(yes, "ADR: " + Round(ADR, 3), Color.LIGHT_GREEN);
AddLabel(yes, "ADR: " + Round((ADR / close) * 100, 3) + "%", Color.LIGHT_GREEN);

# Average ATR
plot AvgATR = MovingAverage(AverageType.SIMPLE, ATR, length);
AvgATR.SetDefaultColor(GetColor(9));
AddLabel(yes, "Avg ATR: " + Round(AvgATR, 3), Color.WHITE);
AddLabel(yes, "Avg ATR: " + Round((AvgATR / close) * 100, 3) + "%", Color.WHITE);

# Average ADR
plot AvgADR = MovingAverage(AverageType.SIMPLE, ADR, length);
AvgADR.SetDefaultColor(GetColor(7));
AddLabel(yes, "Avg ADR: " + Round(AvgADR, 3), Color.GRAY);
AddLabel(yes, "Avg ADR: " + Round((AvgADR / close) * 100, 3) + "%", Color.GRAY);
 
Last edited by a moderator:
https://tos.mx/!Te4nKu1g Gives you the ability to input how many "days" or the time frame you want to look at and compares the ATR off of the mean ATR of those input timeframes
1758558297739.png


https://tos.mx/!kitAIOTh this gives you the percentage of the ATR value based of an avg over inputted timeframe
1758558507514.png



Practical Application to Price Action
  • Entry Signals: Look for ATRLine near LowThresholdLine with a "LOW ATR" label— This could precede a breakout, prompting a bull put spread with 30-40 delta.
  • Exit Signals: If ATRLine hits HighThresholdLine with "HIGH ATR," price action may be overstretched
  • Momentum Assessment: Compare "Current ATR" to "Mean ATR." If current exceeds mean by >0.5, price action is accelerating, supporting your strategy of exiting when momentum is highest.
  • Range Context: The distance between LowThresholdLine and HighThresholdLine shows the historical volatility range. If ATRLine oscillates within this, expect range-bound action; breaches suggest trend shifts.
 
Last edited by a moderator:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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