PureBytes Links
Trading Reference Links
|
gHWsmooth:
{Example of how to use the gHWsmooth indicator in EasyLanguage only, tested
on TS7.
Derived from the Haar a trous wavelet transform.
It is computed as a simple MA of prices at different resolution levels.
Smoothness of 1 means no smoothing or wavelet resolution 0.}
Inputs :
Price (close),
Smoothness (2);
Vars :
SmoothWave(0),
Sness(0);
Sness = Maxlist( Minlist (Smoothness, 6),1);
Smoothwave = average (price, Power ( 2, Sness-1));
Plot1(SmoothWave, "gSmoothWave");
------------------------------------------
gHWdetail
{Example of how to use the gHWdetail indicator in EasyLanguage only, tested
on TS7.
Derived from the Haar a trous wavelet transform.
It is computed as a special case of a simple MACD of prices at the different
resolution levels.
Wavescale of 1 means decomposition resolution of 1}
Inputs :
Price (close),
Wavescale (4);
Vars :
DetailWave(0),
Wscale (0);
Wscale = Maxlist (MinList (Wavescale, 6),1);
DetailWave = average ( price, Power(2, Wscale-1))- average (price,
Power(2,Wscale));
Plot1(DetailWave, "gDetailWave");
-----------------------------
- Ken Greenwood
-----Original Message-----
From: job@xxxxxxxxxxx [mailto:job@xxxxxxxxxxx]
Sent: Thursday, February 19, 2004 10:10 PM
To: omega-list@xxxxxxxxxx
Subject: Wavelet ELD to ASCII
Could a kind soul open this ELD file.
Please post the code to the list
or email me the ASCII EasyLanguage code?
It implements Haar Wavelet and
it's from the following URL
https://www.tradestationworld.com/discussions/Topic.aspx?Topic_ID=5866
Thank you.
Allister
|