Q : "On the formula you posted how would I set up Buy and Sell criteria 
for an exploration? Thanks - Dick -"

Dick,


You could add the following lines to the end of your formula

BTW, you should post into the forum so many people can help you.
It's easier to retrieve later your question in the archives.
A private message is reserved to off topic message, your question is 
just a follow-up and should be in the public topic.

Best regards



Buy = C > HiLo ;
Sell = C < HiLo ;
Short = C < HiLo ;
Cover = C > HiLo ;

shape = IIf( Buy , ExRem( Buy, Sell ) * shapeUpArrow, ExRem( Sell, Buy ) 
* shapeDownArrow );
PlotShapes( shape, IIf( Buy, colorDarkGreen, colorDarkRed ), 0, IIf( 
Buy, Low, High ) );
shape2 = IIf( Cover , ExRem( Cover, Short ) * shapeUpArrow, ExRem( 
Short, Cover ) * shapeDownArrow );
PlotShapes( shape2, IIf( Cover, colorDarkGreen, colorDarkRed ), 0, IIf( 
Cover, Low, High ) );


reinsley a écrit :
> 
> 
> 
> I don't know why it's called Gann !?
> 
> Anyway, it can helps you.
> 
> Best regards
> 
> /*Gann HiLo*/
> 
> Hld = IIf(C > Ref(MA(H, 3), -1), 1, IIf(C < Ref(MA(L, 3), -1), -1, 0));
> Hlv = ValueWhen(Hld != 0, Hld, 1);
> Hilo = IIf(Hlv == -1, MA(H, 3), MA(L, 3));
> Trigger = IIf(C>Hilo, colorGreen, colorRed);
> Plot(Hilo,"HiLo",Trigger,styleStaircase);
> 
> _SECTION_BEGIN("Price");
> SetChartOptions(0,chartShowArrows|chartShowDates);
> _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g,
> Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C,
> 1 ) ) ));
> Plot( C, "Close", ParamColor("Color", colorBlack ), styleNoTitle |
> ParamStyle("Style") | GetPriceStyle() );
> _SECTION_END();
> 
> // Gann HiLo ribbon
> Ribbon = IIf( C>Hilo, colorGreen, colorRed) ;
> Plot( 3, "", Ribbon , styleOwnScale | styleArea | styleNoLabel, 0, 100 );
> 
> goukotegawa a écrit :
>  >
>  >
>  >
>  > anyone know how to program this indicator using AMI??
>  >
>  > http://www.fibonaccitrader.com/HELP40/INDICATORS/hiloactivator.htm 
> <http://www.fibonaccitrader.com/HELP40/INDICATORS/hiloactivator.htm>
>  > <http://www.fibonaccitrader.com/HELP40/INDICATORS/hiloactivator.htm 
> <http://www.fibonaccitrader.com/HELP40/INDICATORS/hiloactivator.htm>>
>  >
>  >
> 
> 


Reply via email to