PureBytes Links
Trading Reference Links
|
Jonf,
Thanks a lot,
but I know a deception with the charting manipulation of Ami compared
to metastock
this is usefullness, two gann hilo, two differents colors, candlestick
two hours and a f...result
stephane
/*price candlestick*/
graph0 = close;
graph0Style = 64;
graph0color=2;
/*Gann HiLo20*/
pds=20;
Hl=IIf(CLOSE>Ref(Ma(H,pds),-1),
/*then*/ 1,
/*else*/ IIf(CLOSE<Ref(Ma(L,pds),-1),
/*then*/ -1,
/*else*/ 0));
Hv=ValueWhen(HL != 0,HL,1);
Hilo=IIf(Hv=-1,
/*then*/Ma(H,pds),
/*else*/Ma(L,pds));
Graph1=Hilo;
Graph1color=3;
/*Gann HiLo20*/
pds=50;
Hl=IIf(CLOSE>Ref(Ma(H,pds),-1),
/*then*/ 1,
/*else*/ IIf(CLOSE<Ref(Ma(L,pds),-1),
/*then*/ -1,
/*else*/ 0));
Hv=ValueWhen(HL != 0,HL,1);
Hilo=IIf(Hv=-1,
/*then*/Ma(H,pds),
/*else*/Ma(L,pds));
Graph2=Hilo;
Graph2color=4;
>
> Style 128 and 64 used the predefined O, H, L array !
> You should reread the AFL Language Reference Manual and see the
description for each graphNStyle !
>
> Note also that you can't mix "Standards charts" with "Custom
indicators". So if you build an indicator you can't insert this
indicator inside the Price "Standards Chart" sub-window.
>
> Hope this will help !
>
> Jon.
> ----- Original Message -----
> From: Stephane Carrasset
> To: amibroker@xxxx
> Sent: Sunday, September 09, 2001 12:09 PM
> Subject: [amibroker] cOULD YOU HELP ME
>
>
> Hi, Tz, Dim
>
>
> I have translated a trading system from Mswin to Ami,
> I want to verify the entries and exits on the price chart
>
> I can't plot a custom indicator on the price bar
> the preference settings doesn't allow me to add a custom indicator
>
> I can't access to the inner window properties of the price chart
>
> I have read the help files from the top to the bottom !!!
>
> if I want to plot or to add a custom indicator on the price bar,
what
> must I do?
> create a custom indicator like this
> graph0=my custom indicator;
> graph1=price /*what is the formula for price*/
>
> stephane
>
>
>
>
> Yahoo! Groups Sponsor
>
>
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
|