EasyLanguage Treasure Chest

Discussion in 'Trading Software' started by Tums, Nov 24, 2008.

Thread Status:
Not open for further replies.
  1. 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! :)
     
    #71     Dec 5, 2008
  2. Tums

    Tums

    #72     Dec 5, 2008
  3. 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.
     
    #73     Dec 6, 2008
  4. Tums

    Tums

    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.
     
    #74     Dec 7, 2008
  5. Tums

    Tums

    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]
    
     
    #75     Dec 9, 2008
  6. Tums

    Tums

    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.
     
    #76     Dec 11, 2008
  7. Tums

    Tums

    Gartley code
     
    #77     Dec 11, 2008
  8. Tums

    Tums

  9. #79     Dec 17, 2008
  10. #80     Dec 18, 2008
Thread Status:
Not open for further replies.