Name That Indicator, Please Help!

Yawar ali

New member
Hello,

I have a screenshot of an indicator, Can anyone please help me get the script for.. please please help me ... script for trading view ... this is very different than trend magic and super trend...

Below is the screenshot link

pREABnc.png
 

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

Best I got with what was provided in the picture.
Ruby:
# ------------------------------------
# Labels for @menacetrader
# Created by TraderSam
# Created 09/27/25
# ------------------------------------

# === DEFS ===
def dailyRange = high - low;
def adrPercent = dailyRange / close * 100;
def adr5 = Average(adrPercent, 5);
def adr20 = Average(adrPercent, 20);
def averageprice5 = average(close, 5);
def averageprice20 = average(close, 20);
def lod = low; 
def distance = close - lod; 
def percentFromLOD = (close - lod) / lod * 100;

# === Labels ===
addlabel(yes, "ADR 5D Avg: " + astext(round(adr5, 2)) + "%" + " | " + "Today: " + astext(round(adrpercent, 2)) + "%" + "  ", Color.gray);
addlabel(yes, " 20D $Avg " + averageprice20 + "  ", color.cyan);
addlabel(yes, " 5D $Avg " + averageprice5 + "  ", color.yellow);
AddLabel(yes, "% From LOD: " + AsText(Round(percentFromLOD, 2)) + "%" + "  ", Color.RED);
addlabel(yes, "ADR 20D Avg: " + astext(round(adr20, 2)) + "%" + " | " + "Today: " + astext(round(adrpercent, 2)) + "%" + "  ", Color.gray);
Screenshot 2025-09-27 at 8.24.12 PM.png
 
Hello,

Does anyone know what indicator this is for colored voulme bars? seeems it also colors the chart too ( look at the big green candle and the pink mark on the chat)
thanks

1758143577979.png
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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