PureBytes Links
Trading Reference Links
|
Here is an example of changeable periods:
//T3 Tillotson
Y=(H+L)/2;
Periods2=Param("T3 Periods",5,1,20,1);
a=Param("T3 Hot",0.7,0,2,0.1);
e1=EMA(Y,Periods2);
e2=EMA(e1,Periods2);
e3=EMA(e2,Periods2);
e4=EMA(e3,Periods2);
e5=EMA(e4,Periods2);
e6=EMA(e5,Periods2);
c1= -a^3;
c2= 3*a^2 + 3*a^3;
c3= -6*a^2 - 3*a - 3*a^3;
c4= 1 + 3*a + a^3 + 3*a^2;
A2= c1*e6 + c2*e5 + c3*e4 + c4*e3;//plot a2
Read the AB reference manuals (ie PARAM) and go through formula code that is listed in the members library.
Run them on your machine. Take the formulas apart. See how the various functions work.
Experiment in mass.
-CS
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/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/
|