[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Re: Convert esignal formula(Bresserts' DSS) into .ela?



PureBytes Links

Trading Reference Links



> -----Message d'origine-----
> De : jbclem [mailto:jbclem@xxxxxxxxxxxxx]
> Envoyé : samedi 4 janvier 2003 03:27
> À : sirtrade@xxxxxxxxxx; omega-list@xxxxxxxxxx
> Objet : Re: Re: Convert esignal formula(Bresserts' DSS) into .ela?
>
>
> Pierre,
>
> I'm already a good typist, but not that good with Easy Language.  Perhaps
> you could help me get this .ela version to work in TS4.  When I try to
> verify it(after shortening a few of the longer words) I get this
> message("variables and arrays not allowed here") at the line
> "dss=xaverage((aa-lowest(aa,pds))" with the cursor stopping at the 1st "aa".
> Since my knowledge of Easy Language hasn't progressed to arrays, do you have
> any suggestions that would push me in the right direction.
>
> Feliz Ano Novo,
>
> John
>
>
>



dss=xaverage((aa-lowest(aa,pds)) is missing the 2nd input (length).
Yu shoud write something like:

dss=xaverage((aa-lowest(aa,pds), length);

PO