PureBytes Links
Trading Reference Links
|
Anthony,
thank you for comments.
One thing I know is that you did it with your own efforts and Peter
could see that perhaps.
You know very well that copy/paste is almost nothing if you do not
understand, especially if you are going to apply your results.
Sometimes I admire your patience...
DT
--- In amibroker@xxxx, Anthony Faragasso <ajf1111@xxxx> wrote:
> Ken,
>
> I agree with you, Being a newbie myself sometime ago, I can remember
> posting questions to the board and Thanks to the Patience of Tomasz
and
> Dimitri and Others and my understanding of Metastock language, They
> were able to shorten my learning curve of AFL. ( I am still
learning ) .
>
> I do not decide who should be helped and who should not, But as you
said
> , the basic stuff should be tried.
> I have translated about 7 formulas for " Peter", which give good
> examples of the AFL language, I would like to see some effort on
his
> part in the future in translating formulas.
>
> To all Newbie's ***Please read the Help Manual*** most answers can
be
> found there.
>
> Anthony
>
> Ken Close wrote:
>
> > 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@xxxx
> > 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/
> >
> >
> >
> >
> >
> > Yahoo! Groups Sponsor
> ADVERTISEMENT
>
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
|