PureBytes Links
Trading Reference Links
|
And what about the max DD of this thing, written as a system ?
> -----Message d'origine-----
> De : Gary Yakhnes [mailto:gary@xxxxxxxxx]
> Envoye : mardi 17 juillet 2001 06:31
> A : omega-list@xxxxxxxxxx
> Objet : Re: I think I have to change my opinion from bad
> precision to buggy c alculations
>
>
> Hello Pierre Orphelin,
>
> Let's imagine for a moment that no such terrible things as
> "errors over bars", "double precision" and "epsilon" are exist.
> To do this let's look at the simple Indicator with Single
> precision, Single bar (lastbaronchart) and hopefully no "epsilon"
> (whatever it is):
>
> {########################################}
> If LastBarOnChart Then Begin
> Value1 = 10.3 - 10.2;
> Value2 = 10.2 - 10.1;
> If Value1 > Value2 Then Value3 = 1 Else Value3=0;
> plot1 (Value3);
> End;
> {########################################}
>
>
|