PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, reinsley <reinsley@xxx> wrote:
>
>
> 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>
> >
> >
>
thanks!
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
|