Here's a simple Turtle-style breakout indicator that will display as
arrows on a price chart.  That should get you started.

Defining your volume criteria and adding it to Cond1 will be good
practice for you.:)  S.


Upds = Param("Uperiods", 20, 6, 252, 1);
Dpds= Param("Dperiods", 20, 6, 252, 1);

Cond1=C>HHV(Ref(C,-1),Upds);
Cond2=C<LLV(Ref(C,-1),Dpds);

Cond3=Flip(Cond1,Cond2);

Buy= Cond3 AND Ref(Cond3,-1)==0;
Sell = Cond3==0 AND Ref(Cond3,-1);

shape=Buy*shapeUpArrow+Sell*shapeDownArrow;

PlotShapes(shape,IIf(Buy, colorGreen, colorRed),0,IIf(Buy, Low,High));


--- In [email protected], "Richard Jay" <[EMAIL PROTECTED]> wrote:
>
> I was browsing the AFL library trying to find something that will
> highlight a breakout but couldn't find anything. Is this too vague a
> request to be able to code ?  All I'm thinking of is a candle that is
> expanding rapidly beyond the trading range of the last xx bars AND a
> volume bar xx% higher than the last xx bars. Has nobody coded this
> before ?
>
> P.S Sorry if I'm posting too many messages but I have lots of
> questions about AB :)
>







Please note that this group is for discussion between users only.

To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com

For other support material please check also:
http://www.amibroker.com/support.html





SPONSORED LINKS
Investment management software Real estate investment software Investment property software
Software support Real estate investment analysis software Investment software


YAHOO! GROUPS LINKS




Reply via email to