Alpha trend pro

Gabby

New member
VIP
new member first post-I was told there is a indicator on this site called Alpha trend pro but I can’t find,its supose to be the single most consistent VIP indicator for spy/qqq-smooths out noise,adapts to volatility,and clearly paints BUY and SeLL arrows based on ATR and moving averages?
 
Solution
new member first post-I was told there is a indicator on this site called Alpha trend pro but I can’t find,its supose to be the single most consistent VIP indicator for spy/qqq-smooths out noise,adapts to volatility,and clearly paints BUY and SeLL arrows based on ATR and moving averages?


No “Alpha Trend Pro” VIP indicator here
It is against forum guidelines to post proprietary indicators.
— And honestly, no single indicator works in all market conditions.

What is great, though, is that the VIP forum offers detailed discussions on chart reading — combining lagging indicators and price action studies to strengthen your analysis.

Profitable traders develop their edge by reading momentum, volume, and support/resistance to spot...
new member first post-I was told there is a indicator on this site called Alpha trend pro but I can’t find,its supose to be the single most consistent VIP indicator for spy/qqq-smooths out noise,adapts to volatility,and clearly paints BUY and SeLL arrows based on ATR and moving averages?


No “Alpha Trend Pro” VIP indicator here
It is against forum guidelines to post proprietary indicators.
— And honestly, no single indicator works in all market conditions.

What is great, though, is that the VIP forum offers detailed discussions on chart reading — combining lagging indicators and price action studies to strengthen your analysis.

Profitable traders develop their edge by reading momentum, volume, and support/resistance to spot setups worth entering. This approach lets you adapt confidently as markets change on a dime — no “buy/sell arrow” gimmicks needed!

Glad you joined us — you’re in the right place to build real skills and confidence in your trading!
 
Last edited:
Solution

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

new member first post-I was told there is a indicator on this site called Alpha trend pro but I can’t find,its supose to be the single most consistent VIP indicator for spy/qqq-smooths out noise,adapts to volatility,and clearly paints BUY and SeLL arrows based on ATR and moving averages?
Try this one might not be what you are looking for but is pretty good
# AlphaTrend - ThinkScript Not PRO
# Original: KivancOzbilgic (TradingView)
# Converted by CANDO13579 | Oct 2025

input coeff = 1.0; # Multiplier
input AP = 14; # Common Period (integer constant)
input src = close; # Source
input showSignals = yes; # Show Signals?
input noVolumeData = no; # Use RSI Instead of MFI?

def TR = TrueRange(high, close, low);
def ATR = Average(TR, AP);

def hlc3 = (high + low + close) / 3;

def upT = low - ATR * coeff;
def downT = high + ATR * coeff;

# Compute RSI and MFI separately (avoid dynamic length parameter)
def rsiVal = RSI(price = src, length = AP);
def mfiVal = MoneyFlow(high, low, close, AP);

# Choose which metric to use (TOS-safe)
def calcCond = if noVolumeData then rsiVal >= 50 else mfiVal >= 50;

# Recursive AlphaTrend logic
rec AlphaTrend =
if BarNumber() == 1 then downT
else if calcCond then
if upT < AlphaTrend[1] then AlphaTrend[1] else upT
else
if downT > AlphaTrend[1] then AlphaTrend[1] else downT;

plot Line1 = AlphaTrend;
Line1.SetDefaultColor(Color.CYAN);
Line1.SetLineWeight(2);

def AlphaTrend2 = AlphaTrend[2];
plot Line2 = AlphaTrend2;
Line2.SetDefaultColor(Color.DARK_RED);
Line2.SetLineWeight(2);

# Determine up/down trends
def upCondition = AlphaTrend > AlphaTrend[2] or AlphaTrend[1] > AlphaTrend[3];
def downCondition = AlphaTrend < AlphaTrend[2] or AlphaTrend[1] < AlphaTrend[3];

# Cloud plots (required to use plots for AddCloud)
plot CloudUpPlot = if upCondition then Line1 else Double.NaN;
CloudUpPlot.HideTitle();
CloudUpPlot.SetPaintingStrategy(PaintingStrategy.LINE);

plot CloudDownPlot = if downCondition then Line1 else Double.NaN;
CloudDownPlot.HideTitle();
CloudDownPlot.SetPaintingStrategy(PaintingStrategy.LINE);

AddCloud(CloudUpPlot, Line2, Color.GREEN, Color.GREEN);
AddCloud(CloudDownPlot, Line2, Color.RED, Color.RED);

# Buy/Sell signals
def buySignal = AlphaTrend crosses above AlphaTrend2;
def sellSignal = AlphaTrend crosses below AlphaTrend2;

rec K1 = if BarNumber() == 1 then 99999 else if buySignal then 0 else K1[1] + 1;
rec K2 = if BarNumber() == 1 then 99999 else if sellSignal then 0 else K2[1] + 1;
rec O1 = if BarNumber() == 1 then 99999 else if buySignal[1] then 0 else O1[1] + 1;
rec O2 = if BarNumber() == 1 then 99999 else if sellSignal[1] then 0 else O2[1] + 1;

def validBuy = buySignal and showSignals and (O1 > K2);
def validSell = sellSignal and showSignals and (O2 > K1);

plot BuyDot = if validBuy then AlphaTrend2 * 0.9999 else Double.NaN;
BuyDot.SetPaintingStrategy(PaintingStrategy.POINTS);
BuyDot.SetDefaultColor(Color.BLUE);
BuyDot.SetLineWeight(3);

plot SellDot = if validSell then AlphaTrend2 * 1.0001 else Double.NaN;
SellDot.SetPaintingStrategy(PaintingStrategy.POINTS);
SellDot.SetDefaultColor(Color.DARK_RED);
SellDot.SetLineWeight(3);

AssignPriceColor(
if upCondition then Color.GREEN
else if downCondition then Color.RED
else Color.CURRENT
);
 
what it looks like.
 

Attachments

  • supertrend.png
    supertrend.png
    61.3 KB · Views: 6

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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