PureBytes Links
Trading Reference Links
|
Anthony:
While I think it is very important to help newcomers with translations (and
many helped me including yourself), do you not think that the newcomers
should be encouraged to translate things themselves? I do.
If someone, like Peter here, is going to list a formula and say "Please
translate", at least he or she could do is explain to the list what the
formula in Metastock is attempting to do and why he wants to use it.
My inclination was to go to all of the trouble to copy some help statements
on the differences between MOV and MA in order to begin the AB learning
process.
Now some of the more "advanced" functions need additional examples or help,
so I certainly support providing help on those. The real basics.....???
well, take a shot and then ask for help.
Just two cents worth....
Ken
-----Original Message-----
From: Anthony Faragasso [mailto:ajf1111@x...]
Sent: Sunday, June 30, 2002 8:11 AM
To: amibroker@xxxxxxxxxxxxxxx
Subject: Re: [amibroker] Conversion Metastock in AFL
Hello,
I am assuming this is an explore formula, so load into AA, Apply to : (
all stocks or use filter ) , set range to : n last quotations and n=1,
click explore.
altbar=IIf(C>O AND Ref(C,-1)<Ref(O,-1),1,IIf(C<O AND
Ref(C,-1)>Ref(O,-1),1,0));
conbar=IIf(C>Ref(L,-1) AND C<Ref(H,-1),1,0);
dojibar=IIf(abs((C/O)-1)*100<0.05,1,0);
Final=Sum(altbar,3)>=3 OR Sum(conbar,4)>=4 OR Sum(dojibar,4)>=4;
Filter=Final > 0;
AddColumn(final,"Final");
Inwind wrote:
>
>
>
> Yahoo! Groups Sponsor
ADVERTISEMENT
[Click Here!]
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|