Adaptive Trend Flow [QuantAlgo] For ThinkOrSwim

The author states:
The Adaptive Trend Flow is composed of several technical components that create a dynamic trending system:
Dual EMA System: Utilizes fast and slow EMAs for primary trend detection
Volatility Integration: Computes and smooths volatility for adaptive band calculation
Dynamic Band Generation: Creates volatility-adjusted boundaries for trend validation
Gradient Visualization: Provides progressive visual feedback on trend strength

LVHEgjv.png


Here is the original Tradingview code:
https://www.tradingview.com/v/1ttpw8M3/

For the new ThinkOrSwim code, you must scroll down to the next post
 
Last edited by a moderator:

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

check the below:

CSS:
#//Indicator for TOS
#// © QuantAlgo
#indicator(title="Adaptive Trend Flow [QuantAlgo]", overlay=true, max_labels_count=500)
# Converted by Sam4Cok@Samer800    - 03/2025

input timeframe     = AggregationPeriod.MIN;
input ColorBars     = yes;    # "Color Bars?"
input BackgroundColor = yes;  # "Background Color?"
input showSignals   = yes;    # "Show Signals?"
input source        = FundamentalType.HLC3;
input MovAvgType    = AverageType.EXPONENTIAL;
input mainLength    = 10;     # "Main Length"
input SmoothingLength = 14;   # "Smoothing Length"
input sensitivity   = 2.0;    # "Sensitivity"


def na = Double.NaN;
def last = isNaN(close);
def pos = Double.POSITIVE_INFINITY;
def neg = Double.NEGATIVE_INFINITY;
def cap = GetAggregationPeriod();
def tf = Max(cap, timeframe);
def typical = Fundamental(FundamentalType = source, Period = tf);
#--Col
DefineGlobalColor("up", CreateColor(0, 37, 0));
DefineGlobalColor("dn", CreateColor(37, 0, 0));
#calculate_trend_levels() =>
def fast_ema = MovingAverage(MovAvgType, typical, mainLength);
def slow_ema = MovingAverage(MovAvgType, typical, mainLength * 2);
def basis = (fast_ema + slow_ema) / 2;
def vol = stdev(typical, mainLength);
def smooth_vol = MovingAverage(MovAvgType, vol, SmoothingLength);
def upper = basis + (smooth_vol * sensitivity);
def lower = basis - (smooth_vol * sensitivity);
    
#get_trend_state(upper, lower, basis) =>
def level;
def trend;

if !level[1] {
    trend = if close(Period = tf) > basis then 1 else -1;
    level = if trend == 1 then lower else upper;
} else if trend[1] == 1 {
        if close(Period = tf) < lower {
            trend = -1;
            level = upper;
        } else {
            trend = trend[1];
            level = lower;
        }
} else {
        if close(Period = tf) > upper {
            trend = 1;
            level = lower;
        } else {
            trend = trend[1];
            level = upper;
        }
}
#// Background gradient coloring
def intensity;
def intensity1;
def prev_trend;
#// Reset intensity on trend change
if trend != prev_trend[1] {
    intensity1 = 0;
    prev_trend = trend;
    } else {
    intensity1 = intensity[1];
    prev_trend = trend;
    }
#// Increment intensity based on trend
intensity = if trend == 1 then min(intensity1 + 3, 20) else
            if trend == -1 then min(intensity1 + 3, 20) else intensity1;
# VISUALIZATION
#// Signal detection
def long_signal = trend == 1 and trend[1] == -1;
def short_signal = trend == -1 and trend[1] == 1;

#// Plot average/basis line
plot basisLine = basis;
basisLine.SetLineWeight(2);
basisLine.AssignValueColor(if trend==1 then CreateColor(0, intensity * 12.75, intensity * 12.75) else
                                            CreateColor(intensity * 12.75, 0, intensity * 12.75));

#// Plot trend line with breaks
plot trendLine = level;
trendLine.AssignValueColor(if close > level then Color.GREEN else Color.RED);

AddCloud(basisLine, trendLine, Color.DARK_GREEN, Color.DARK_RED);

def int = if BackgroundColor then intensity else na;
def tr  = if !last then trend else na;

AddCloud(if tr == 1 and (int > 0 or int[-1] > 0) then pos else na, neg, GlobalColor("up"));
AddCloud(if tr == 1 and (int > 10 or int[-1] > 10) then pos else na, neg, GlobalColor("up"));
AddCloud(if tr ==-1 and (int > 0 or int[-1] > 0) then pos else na, neg, GlobalColor("dn"));
AddCloud(if tr ==-1 and (int > 10 or int[-1] > 10) then pos else na, neg, GlobalColor("dn"));

#// Add labels for crossovers
def crosUp = (close > level) and (close[1] <= level[1]);
def crosDn = (close < level) and (close[1] >= level[1]);

def sigDn = if showsignals and crosDn then level else na;
def sigUp = if showsignals and crosUp then level else na;

AddChartBubble(sigDn and !crosUp[-1], sigDn, "S", Color.MAGENTA);
AddChartBubble(sigUp and !crosDn[-1], sigUp, "B", Color.CYAN, no);

#/ Bar Coloring
AssignPriceColor(if !ColorBars then Color.CURRENT else
                 if trend == 1 then CreateColor(0, intensity * 12.75, 0) else CreateColor(intensity * 12.75, 0, 0));

#-- END of CODE
 
check the below:

CSS:
#//Indicator for TOS
#// © QuantAlgo
#indicator(title="Adaptive Trend Flow [QuantAlgo]", overlay=true, max_labels_count=500)
# Converted by Sam4Cok@Samer800    - 03/2025

input timeframe     = AggregationPeriod.MIN;
input ColorBars     = yes;    # "Color Bars?"
input BackgroundColor = yes;  # "Background Color?"
input showSignals   = yes;    # "Show Signals?"
input source        = FundamentalType.HLC3;
input MovAvgType    = AverageType.EXPONENTIAL;
input mainLength    = 10;     # "Main Length"
input SmoothingLength = 14;   # "Smoothing Length"
input sensitivity   = 2.0;    # "Sensitivity"


def na = Double.NaN;
def last = isNaN(close);
def pos = Double.POSITIVE_INFINITY;
def neg = Double.NEGATIVE_INFINITY;
def cap = GetAggregationPeriod();
def tf = Max(cap, timeframe);
def typical = Fundamental(FundamentalType = source, Period = tf);
#--Col
DefineGlobalColor("up", CreateColor(0, 37, 0));
DefineGlobalColor("dn", CreateColor(37, 0, 0));
#calculate_trend_levels() =>
def fast_ema = MovingAverage(MovAvgType, typical, mainLength);
def slow_ema = MovingAverage(MovAvgType, typical, mainLength * 2);
def basis = (fast_ema + slow_ema) / 2;
def vol = stdev(typical, mainLength);
def smooth_vol = MovingAverage(MovAvgType, vol, SmoothingLength);
def upper = basis + (smooth_vol * sensitivity);
def lower = basis - (smooth_vol * sensitivity);
   
#get_trend_state(upper, lower, basis) =>
def level;
def trend;

if !level[1] {
    trend = if close(Period = tf) > basis then 1 else -1;
    level = if trend == 1 then lower else upper;
} else if trend[1] == 1 {
        if close(Period = tf) < lower {
            trend = -1;
            level = upper;
        } else {
            trend = trend[1];
            level = lower;
        }
} else {
        if close(Period = tf) > upper {
            trend = 1;
            level = lower;
        } else {
            trend = trend[1];
            level = upper;
        }
}
#// Background gradient coloring
def intensity;
def intensity1;
def prev_trend;
#// Reset intensity on trend change
if trend != prev_trend[1] {
    intensity1 = 0;
    prev_trend = trend;
    } else {
    intensity1 = intensity[1];
    prev_trend = trend;
    }
#// Increment intensity based on trend
intensity = if trend == 1 then min(intensity1 + 3, 20) else
            if trend == -1 then min(intensity1 + 3, 20) else intensity1;
# VISUALIZATION
#// Signal detection
def long_signal = trend == 1 and trend[1] == -1;
def short_signal = trend == -1 and trend[1] == 1;

#// Plot average/basis line
plot basisLine = basis;
basisLine.SetLineWeight(2);
basisLine.AssignValueColor(if trend==1 then CreateColor(0, intensity * 12.75, intensity * 12.75) else
                                            CreateColor(intensity * 12.75, 0, intensity * 12.75));

#// Plot trend line with breaks
plot trendLine = level;
trendLine.AssignValueColor(if close > level then Color.GREEN else Color.RED);

AddCloud(basisLine, trendLine, Color.DARK_GREEN, Color.DARK_RED);

def int = if BackgroundColor then intensity else na;
def tr  = if !last then trend else na;

AddCloud(if tr == 1 and (int > 0 or int[-1] > 0) then pos else na, neg, GlobalColor("up"));
AddCloud(if tr == 1 and (int > 10 or int[-1] > 10) then pos else na, neg, GlobalColor("up"));
AddCloud(if tr ==-1 and (int > 0 or int[-1] > 0) then pos else na, neg, GlobalColor("dn"));
AddCloud(if tr ==-1 and (int > 10 or int[-1] > 10) then pos else na, neg, GlobalColor("dn"));

#// Add labels for crossovers
def crosUp = (close > level) and (close[1] <= level[1]);
def crosDn = (close < level) and (close[1] >= level[1]);

def sigDn = if showsignals and crosDn then level else na;
def sigUp = if showsignals and crosUp then level else na;

AddChartBubble(sigDn and !crosUp[-1], sigDn, "S", Color.MAGENTA);
AddChartBubble(sigUp and !crosDn[-1], sigUp, "B", Color.CYAN, no);

#/ Bar Coloring
AssignPriceColor(if !ColorBars then Color.CURRENT else
                 if trend == 1 then CreateColor(0, intensity * 12.75, 0) else CreateColor(intensity * 12.75, 0, 0));

#-- END of CODE
@samer800 thank you some much for this awesome job, really appreciate you. a quick question do you think it is possible to add a ARROW instead of the buy and sell labels, that will be great.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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