Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

Fredd

Looking for an ATR Trailing Stop Indicator

Recommended Posts

Hi all,

 

This afternoon I was browsing at eBay.com and found an add from T2W offering their ATR traling stop indicator for only USD 49,- I wonder if we have this indicator here on this site? Or something what come close to it? Thanks for your help.

atr-trailing-stop.gif.19e3af6cb261a73f5264333acc6eafa1.gif

Share this post


Link to post
Share on other sites

I assume this is calculating the ATR (of the periodicity the bars are set to), and there is probably an optional ATR multiplier involved (call it x). So when we're long (uptrend), you'd have:

 

ATR_Stop = max(ATR_Stop.1, HI - x * ATR);

 

once the low of a bar hits our ATR_Stop, we turn around and go short, and initialize ATR_Stop to:

 

ATR_Stop = LO + x * ATR;

 

and then maintain the ATR_Stop with:

 

ATR_Stop = min(ATR_Stop.1, LO + x * ATR);

 

on the way down until the high hits our ATR_Stop...and continue.

 

This is very similar to the Parabolic SAR indicator you'll find in a number of products.

 

http://www.linnsoft.com/tour/techind/sar.htm

 

I could probably add this easily enough as a built-in indicator to Investor/RT, giving the user the ability to specify the ATR period and multiplier.

Edited by LS_Chad

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.