PureBytes Links
Trading Reference Links
|
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>>
> >
> >
>
>
------------------------------------
**** 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/
|