PureBytes Links
Trading Reference Links
|
On Tue, 16 Jul 2002, Benjamin ElGuru Blanco wrote:
> Smoothing a Stochastic or any calculation is simply a matter of applying the
> average or exponential average to the calculation. Double or triple
> smoothing is the result of smoothing it that many times. Here is an example
> of a double smoothed Stochastic.
>
> Plot1( XAverage( XAverage( FastK( 14 ), 7 ), 3 ), "Plot1" ) ;
>
>
> Best regards,
>
> Benjamin "ElGuru" Blanco
> http://www.blancofamily.net/elguru
>
> ----- Original Message -----
> From: "Eduardo Longo" <eduardo.longo@xxxxxxxxxx>
> To: <omega-list@xxxxxxxxxx>
> Sent: Monday, July 08, 2002 11:39 AM
> Subject: DSS
>
>
> Has someone the code for Double Smooth Stochastic ???
>
> Thanks a lot
>
> Eduardo
Though doing the above code is suggested as slow by TRAD support.
They recommend assigning the result of a calculation to a variable for future use.
value1 = FastK(14);
value2 = XAverage(value1, 7);
value3 = XAverage(value2, 3);
plot1(value3, "Plot1");
|