PureBytes Links
Trading Reference Links
|
Try starting with something like this. You might want to limit the
trades when the ATR is lower than some threshold value. This would
indicate a sideways or shallow channel with small bars. I assume you
want to take a position when the market starts to move or becomes
more volatile.
// ATR lookback
pATR = Param("ATR period", 15, 2, 50, 1);
fATR = ATR(pATR);
fHHV = HHV(H, pATR);
fLLV = LLV(L, pATR);
Buy = H >= fLLV + 3 * fATR; // you can try C rather than H
Sell = L <= fHHV - 3 * fATR; // you can try C rather than L
Plot(fATR, "ATR", colorBlack);
PlotShapes(Buy * shapeUpArrow, colorGreen);
PlotShapes(Sell * shapeDownArrow, colorRed);
Barry
--- In amibroker@xxxxxxxxxxxxxxx, "binjobingo" <binjobingo@xxx> wrote:
>
> Hi anybody have afl for this
>
> Lookback period should be adjustible
>
> ATR parameter should be adjustible
>
> New UpMove starts when price moves 3 ATRs
> up from the lowest low or lowest close over 15-period look-back.
>
> New Downmove starts when price moves 3 ATR's down from the
> highest high or highest close over 15-period look back period
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|