EasyLanguage Treasure Chest

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

Thread Status:
Not open for further replies.
  1. cameo57

    cameo57

    How do you import easy language to Trade Station?
     
    #121     Jan 10, 2009
  2. Tums

    Tums

    Open up your PowerEditor...
    File>New
    Study Type> Indicator
    copy and paste the code into the new indicator,
    click Compile.
     
    #122     Jan 10, 2009
  3. Here is a Take Off on the DMI.
    Takes the net directional movement, double smooths it and presents signal line.

    John


    Code:
    [color=blue]
    [SameTickOpt = True];
    [LegacyColorValue = true]; 
    
    
    inputs: 
    Length( 26), 
    Smooth(5), 
    DSmooth(5), 
    Overbought(.1), 
    Oversold(-.1); 
    
    variables: 
    oDMIPlus( 0 ), 
    oDMIMinus( 0 ), 
    oDMI( 0 ), 
    oADX( 0 ), 
    oADXR( 0 ), 
    oVolty( 0 ) ; 
    
    Value1 = DirMovement( H, L, C, Length, oDMIPlus, oDMIMinus, oDMI, oADX, oADXR, oVolty ) ; 
    value2= xaverage((oDMIPlus-oDMIMinus)/(oDMIMinus+oDMIPlus) ,smooth); 
    
    
    Plot1( value2, "SRatio" ) ; 
    Plot2(xaverage(plot1,dsmooth), "A"); 
    Plot3(Overbought,"OB"); 
    Plot4(oversold,"OS"); 
    If Plot1 > overbought then setplotcolor(1,darkgreen); 
    if plot1 < oversold then setplotcolor(1,darkred);
    [/color]
    
     
    #123     Jan 10, 2009
  4. Tums

    Tums

    #124     Jan 15, 2009
  5. Tums

    Tums

    code for Awesome Oscillator
     
    #125     Jan 15, 2009
  6. Hi Tums,
    This is an excellent thread for those who use MC and TS. I have MC but find it cumbersome as I only want it for stocks. Keep up the fine work I'm sure many people find it extremely helpful...well done.

    Tim
     
    #126     Jan 15, 2009
  7. Tums

    Tums

    Hi Tim:

    I am glad you found this useful.

    A number of programs can read EasyLanguage now; Open E Cry and TraderStudio are the first ones come to my mind. There are a few more.

    Enjoy.
     
    #127     Jan 15, 2009
  8. Tums

    Tums

    High/Low Bracket
    This program marks the Highest High and the Lowest Low of N bars back.
    Useful for scalping, setting breakout stops, etc.

    <img src=http://www.elitetrader.com/vb/attachment.php?s=&postid=2263291>
     
    #128     Jan 16, 2009
  9. Tums

    Tums

    code for High/Low Bracket:
     
    #129     Jan 16, 2009
  10. harsh

    harsh

    I like H line instead HH LL, is it possible for you to write code for horizontal lens to be drawn at HH LL.
    thanks
     
    #130     Jan 18, 2009
Thread Status:
Not open for further replies.