PureBytes Links
Trading Reference Links
|
I was asked to post, so here it is.
Enjoy!
/*******************************************************************/
/* Another way to calculate Tim Tillson's T3's */
/*******************************************************************/
VF = .7 // Velocity Factor (amplification)
function GD(m,n,a) // Generalized DEMA
{ // m=array, n=Periods,
a=amplification
Value = ( (1+a) * EMA(m,n) )
- ( ( a) * EMA(EMA(m,n),n) );
return Value;
} // End function
function RST(m,n,a) // Cube the Generalized DEMA
{ // m=array, n=Periods,
a=amplification
Value = GD(GD(GD(m, n, a), n, a), n, a);
return Value;
} // End function
/*******************************************************************/
Plot(RST(Close, 3, VF), "T3", colorGreen, styleLine);
------------------------ Yahoo! Groups Sponsor --------------------~-->
In low income neighborhoods, 84% do not own computers.
At Network for Good, help bridge the Digital Divide!
http://us.click.yahoo.com/EpW3eD/3MnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|