Fixing the 3 bar stop

georgemeals

New member
So I found the code translated in thinkscript in some reddit form. However, it freaks out too much. The trailing stop is not supposed to flip this frequently. For instance, on the long side, when price takes out the lowest low from the 3 bar trail, the trailing stop calculation to flip. Now, it should look at the lowest close and go back 2 bars to the highest high. Once price takes out the highest high. The calculation should flip to the highest closes and go back 2 bars to the lowest low. In all cases inside bars are never counted.

Code:
def count;

def basso;

def alto;

def ref;

def inside = high < high[1] and low > low[1];

count = if !inside and count[1] < 4 then count[1] + 1 else 1;

if count == 1 and !inside

{

basso = low;

alto = high;

}

else if count > 1 and !inside

{

basso = if low < basso[1] then low else basso[1];

alto = if high > alto[1] then high else alto[1];

}

else

{

basso = basso[1];

alto = alto[1];

}



if close > alto[1]

{

ref = basso;

}

else if close < basso[1]

{

ref = alto;

}

else

{

ref = ref[1];

}

plot data = ref;

data.SetPaintingStrategy(PaintingStrategy.Points);
 
Last edited by a moderator:
@georgemeals
Just glancing through and the first issue I see is you are resetting the count variable to 1 on every inside bar, not skipping it.

Try change the definition line of count to this:
Ruby:
count = if inside then count[1] else if !inside and count[1] < 4 then count[1] + 1 else 1;

Does that give you the results you were expecting?
 

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
302 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