Thanks for the answers. MAESTRO, are you referring to this System Writer Â, as below: http://www.allbusiness.com/technology/computer-software/107378-1.html http://findarticles.com/p/articles/mi_hb3104/is_198906/ai_n7764487 Do we need to learn Easy Language? If yes, how do we learn? Are there any books or websites that teach it? Thanks!
Pesavento pattern <img src=http://elitetrader.com/vb/attachment.php?s=&postid=2163043 width=800> click on image for full size view (78)
For some reason i can't find the code, but i do have a code for it in wealth lab. I'm not sure in anyone can translate it into TS language but here it is anyway. By the way i did not write this code and am taking no credit for it. It was available to the public on the old wealth lab site.
a simple ZigZag code Code: [color=blue] // Type : Indicator // Name : ZigZag vars: Dir(0); if Dir = 0 then begin if high[1] >= high[2] and high[1] > high then begin plot1[1](high[1], "ZigZag"); Dir = 1; end else noplot[1](1); end else if Dir = 1 then begin if low[1] <= low[2] and low[1] < low then begin plot1[1](low[1], "ZigZag"); Dir = 0; end else noplot[1](1); end; [/color] Edit: Code tweaked on 20081209 for improved performance.
Some one asked for the Donchian Channel code. Here it is... Code: [color=blue] // Donchian Channel Inputs: Base(close), Length(13), ShowAvg(true); Variables: DonHigh(0), DonLow(0), DonAvg(0); DonHigh = Highest( base, Length); DonLow = Lowest( base, Length); DonAvg = ((DonHigh + DonLow) / 2 ); Plot1(DonHigh, "DonchianHi"); Plot2(DonLow, "DonchianLo"); if ShowAvg = true then Plot3(DonAvg, "DonchianAvg"); [/color]
Gartley Pattern Original Code written by Mark Conway Modified by deMicron Oct. 09, 2004 This code is very sensitive. You will need to experiment with the variables to match your charts' fractal and volatility. <img src=http://elitetrader.com/vb/attachment.php?s=&postid=2216712> (25) code attachment in next post.
Tums Premium / Discount <img src=http://www.elitetrader.com/vb/attachment.php?s=&postid=1850102 width=800> click on image to enlarge (64) Click here for code and description http://www.elitetrader.com/vb/showthread.php?s=&postid=1849992#post1849992 (493)