ATR Trailing Stop

SHJ

New member
VIP
Hi Team,

I am trying to use the following script in a way that the color of the candles will change when candles are "at or closer" to the bottoms and tops. Therefore, can somebody help me add an input field so the ATR Trailing Stop length can be customized (or any other feature that can provide a better result)?

def st = ATRTrailingStop().state;
AssignPriceColor(if st == 1
then GetColor(6)
else if st == 2
then GetColor(5)
else Color.CURRENT);
def bs = !IsNaN(close) and ATRTrailingStop().BuySignal == yes;
def ss = !IsNaN(close) and ATRTrailingStop().SellSignal == yes;
 
Solution
Hi Team,

I am trying to use the following script in a way that the color of the candles will change when candles are "at or closer" to the bottoms and tops. Therefore, can somebody help me add an input field so the ATR Trailing Stop length can be customized (or any other feature that can provide a better result)?

def st = ATRTrailingStop().state;
AssignPriceColor(if st == 1
then GetColor(6)
else if st == 2
then GetColor(5)
else Color.CURRENT);
def bs = !IsNaN(close) and ATRTrailingStop().BuySignal == yes;
def ss = !IsNaN(close) and ATRTrailingStop().SellSignal == yes;


you are trying to read data from another study, that has a variable defined by def.
. def st = ATRTrailingStop().state;
...
Hi Team,

I am trying to use the following script in a way that the color of the candles will change when candles are "at or closer" to the bottoms and tops. Therefore, can somebody help me add an input field so the ATR Trailing Stop length can be customized (or any other feature that can provide a better result)?

def st = ATRTrailingStop().state;
AssignPriceColor(if st == 1
then GetColor(6)
else if st == 2
then GetColor(5)
else Color.CURRENT);
def bs = !IsNaN(close) and ATRTrailingStop().BuySignal == yes;
def ss = !IsNaN(close) and ATRTrailingStop().SellSignal == yes;


you are trying to read data from another study, that has a variable defined by def.
. def st = ATRTrailingStop().state;
. ATRTrailingStop().BuySignal

can't do that.
can only read plot variables.

if you want to interact with the study, copy all of the study code and paste it into a new study. then you can use all the variables.

------------------

i think you want to check when a candle is close to the trail dotted line.
and you want to alter input parameters.
so what i do is go to the original study, ATRTrailingStop, and copy the inputs and the plots.
then i know what i can work with.

when close is within (0.15% x close) of the trail line, candles will be drawn in blue or yellow.


Code:
#atr_trail_stop_chgbarcolor

#https://usethinkscript.com/threads/atr-trailing-stop.20754/
#ATR Trailing Stop

def na = double.nan;
def bn = barnumber();

#copy inputs from orig, ATRTrailingStop
input trailType = {default modified, unmodified};
input ATRPeriod = 5;
input ATRFactor = 3.5;
input firstTrade = {default long, short};
input averageType = AverageType.WILDERS;

# trail line
def trailline = ATRTrailingStop(trailType, ATRPeriod, ATRFactor, firstTrade, averageType);

plot z = trailline;
z.SetPaintingStrategy(PaintingStrategy.POINTS);
z.AssignValueColor(if trailline < close then GetColor(1) else GetColor(0));

# is close near trail line?
input near_percent = 0.15;
def near_dollars = (close * near_percent/100);

def isnear_topline = if (close < trailline and (close + near_dollars) > trailline) then 1 else 0;
def isnear_botline = if (close > trailline and (close - near_dollars) < trailline) then 1 else 0;

AssignPriceColor(
 if isnear_topline then color.blue
 else if isnear_botline then color.yellow
 else color.current);

# ----------------

input test_near_triangles = no;
plot zup = if test_near_triangles and isnear_topline then high*1.002 else na;
zup.SetPaintingStrategy(PaintingStrategy.triangles);
zup.SetDefaultColor(Color.white);
zup.setlineweight(5);
zup.hidebubble();

input test_show_per_line = no;
plot zper = if !test_show_per_line then na
 else if close < trailline then (close + near_dollars)
 else (close - near_dollars); 
#
 

Attachments

  • img1.JPG
    img1.JPG
    69 KB · Views: 65
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
818 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