PureBytes Links
Trading Reference Links
|
> -----Message d'origine-----
> De : pierre.orphelin [mailto:pierre.orphelin@xxxxxxxxxxxxxx]
> Envoye : dimanche 29 juillet 2001 19:15
> A : omega-list@xxxxxxxxxx
> Objet : RE: TradeStation Precision - Summary
>
>
> ============================================
> value1=2; [ This is obviously a constant, set to 2 every bar}
>
> value2=xaverage(value1,10); {this is the EMA of the constant serie above}
> Value3=2-value2; { this is the error that should propagate
> according to you and that need Double precision at a minimum}
>
> if mod(currentbar,50)=0 then messagelog(currentbar:1:0,"
> ",value2:1:8," ",value3:1:8);
> {The message log will display barnumber, the EMA, the error,
> every 100 bars}
Please read every 50 bars
PO
|