| Technical Analysis The technical discussion forum for traders. |
![]() | | Tweet | |
| | #1 | ||
![]() | Average True Range (ATR) Hopefully momentom can provide us some examples and I will do my best to interact as well. Right now my questions would be what settings to set your ATR at, what number (if any) to multiply that number by (and why) and then how to use that in your trading? In my personal use, I am interested in using this as a trailing stop idea, but I'd like to hear if any are using this as a tool for entering trades as well. | ||
| |
|
| | #2 | ||
![]() Join Date: Oct 2006 Location: Stockton Springs, Maine Posts: 1,440 Thanks: 0
Thanked 53 Times in 19 Posts
| Re: Average True Range (ATR) | ||
| |
|
| | #3 | ||
![]() | Re: Average True Range (ATR) Quote:
Would you mind posting the code or sending it in a PM so I could have a look Cheers Blu-Ray
__________________ “ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google | ||
| |
|
| | #4 | ||
![]() Join Date: Oct 2006 Location: Stockton Springs, Maine Posts: 1,440 Thanks: 0
Thanked 53 Times in 19 Posts
| Re: Average True Range (ATR) define the current trend. The indicator plots a red line above the prices bars when a downward trend is detected, and a blue line below the bars when an upward trend is detected. These lines are commonly used as trailing stops. This indicator is commonly used as a exit tool rather than an entry technique. When price crosses the VSTOP value, the trend reverses and VSTOP moves to the other side of price. The VSTOP is calculated as follows: VSTOP Calculation When Up Trend Detected.... VSTOP = CL - MULT * TR As Up Trend Continues.... VSTOP = MAX(VSTOP.1, MaxCL - MULT * TR) When Down Trend Detected.... VSTOP = CL + MULT * TR As Down Trend Continues.... VSTOP = MIN(VSTOP.1, MinCL + MULT * TR) Where... CL = Closing Price MULT = True Range Multiplier TR = True Range VSTOP.1 = Volatility Stop Value on Previous Bar MaxCL = Maximum Closing Price since Up Trend Began MinCL = Minimum Closing Price since Down Trend Began Trend reverses between up and down when Closing Price crosses VSTOP. RTL Token: VSTOP The RTL Token for the Volatility Stop indicator is VSTOP. A common system for trading the VSTOP might be to look for closing price crossing VSTOP: Long... CL > VSTOP AND CL.1 <= VSTOP Short... CL < VSTOP AND CL.1 >= VSTOP More information on VSTOP can be found at: http://www.linnsoft.com/tour/techind/vstop.htm | ||
| |
|
| | #5 | ||
![]() Join Date: Oct 2006 Location: Stockton Springs, Maine Posts: 1,440 Thanks: 0
Thanked 53 Times in 19 Posts
| Re: Average True Range (ATR) | ||
| |
|
| | #6 | ||
![]() | Re: Average True Range (ATR) Cheers Blu-Ray
__________________ “ Search is the ultimate expression of the power of the individual, using a computer, looking at the world, and finding exactly what they want ” – Eric Schmidt, Google | ||
| |
|
| | #7 | ||
![]() | Re: Average True Range (ATR) logic was that if 3 ATR's is a good stop -- then entering on a pullback and using the 3 ATR stop rule will make risk less than 3 ATR's. I have been using 1.5 ATR's as my pullback zone. So in the chart... enter on limit near the lowest yellow line price and put a stop loss in at the lowest red line price -- so your initial risk is roughly 1.5 ATR's (3.0 atr stop with 1.5 atr pullback for entry). This has been working well on a 2-minute chart for me. A good move really shouldn't break the 3 ATR level. fyi, this has nothing to do with a set-up -- this is only the management of a trade once you have decided you like the pattern. man, I am rarely this patient but I really felt like we were going to make a lower low in the afternoon today -- note that it took a full 45 mins before my stop was actually lower than my entry.... but I did get my 'risk' down to 1.5 ES pts after about 20-mins... Easylanguage code for this indicator: value1= c[1]+(avgtruerange(10)*1.5); value2= average(c,2)[1]+(avgtruerange(10)*3); Plot1(Value1, "+1.5 ATRs" ); Plot2(Value2, "+3ATRs" ); Last edited by Dogpile; 09-07-2007 at 07:26 PM. | ||
| |
|
| | #8 | ||
![]() | Re: Average True Range (ATR) Just wondering if you can share, why did you exit where the chart shows and not on the 3 ATR red line? Very nice trade. Thanks. Mark | ||
| |
|
![]() |
| Thread Tools | |
| Display Modes | Help Others By Rating This Thread |
| |
| ∧ Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Screaming Fast Moving Average | Minetoo | Trading Indicators | 47 | 04-10-2011 12:46 PM |
| Money Management: The True Holy Grail | Soultrader | Money Management | 12 | 05-22-2008 07:48 AM |
| Which Moving Average on a 5min Chart? | Keys | Technical Analysis | 16 | 04-25-2008 10:01 PM |
| Average Volume Question | Soultrader | Technical Analysis | 18 | 03-15-2007 12:46 PM |
| Average Initial Balance | Soultrader | Market Profile | 4 | 01-10-2007 09:15 PM |