PureBytes Links
Trading Reference Links
|
Remember, I was the one who used to recommend that you use variables.
However, the variable sample will not work with standard TS4 EasyLanguage.
The variable sample is also not necessary in such a straight forward sample
plot calculation.
Best regards,
Benjamin "ElGuru" Blanco
Independent Custom Analysis Technique
Programmer<http://www.blancofamily.net/elguru>
----- Original Message -----
From: "Mike Eggleston" <mikee@xxxxxxxxxxxxxx>
To: "Benjamin ElGuru Blanco" <elguru@xxxxxxxxxxxxxxxx>
Cc: "omega-list" <omega-list@xxxxxxxxxx>; "Eduardo Longo"
<eduardo.longo@xxxxxxxxxx>
Sent: Tuesday, July 16, 2002 10:08 AM
Subject: Re: DSS
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");
|