EasyLanguage Treasure Chest

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

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

    Tums

    Your software is NOT 100% EasyLanguage compliant.

    Sorry, can't help you further.
    Pls contact your software vendor for assistance.
     
    #191     Feb 5, 2009
  2. Call volume minus Put volume

    This indicator takes the daily net Call volume minus the Put volume.
    It only plots an assignable lookback period, not the raw values. Default average is 20.

    I haven't figured out how to use it but for those who do have at it.

    It only works on daily charts, weekly etc, not intraday.

    John


    Code:
    [color=blue]
    inputs: 
    	AvgLength( 20 ); 
    variables:
    	CallputVol( 0 ),
    	AvgCallputVol( 0 ) ;
    
    CallputVol = (callvolume - putvolume) ;
    AvgCallputVol = Average( callputvol, AvgLength ) ;
    
    
    Plot2( AvgCallputVol, "AvgCallputVol" ) ;
    [/color]
    


    see discussions here:
    http://www.elitetrader.com/vb/showthread.php?s=&postid=2292804#post2292804
     
    #192     Feb 5, 2009
  3. -----------------------------------------------------

    Syntax error - line 45 ??

    SetPlotColor[1](1, upcol)

    Thanks TUMS
     
    #193     Feb 6, 2009
  4. Tums

    Tums

    I have re-checked the code. It is working ok.
    Something is amiss in your software.
    You should contact the vendor for assistance.
     
    #194     Feb 6, 2009
  5. Tums

    Tums

    Red Light / Green Light

    This might well be the holy grail you have been looking for.

    Set up instructions inside the code.


    <img src=http://www.elitetrader.com/vb/attachment.php?s=&postid=2293730>
     
    #195     Feb 6, 2009
  6. Tums

    Tums

    code for Red Light / Green Light


    note: updated version 1.1
    (added option to use exponential moving average)
     
    #196     Feb 6, 2009
  7. harsh

    harsh

    Hi Tums;
    How would you create arrows at top and bottom of current bar of cci indicator, (for range bars only) indicating cci values, if current bar closes at range high or closes at range low? I have seen this for Navigator by Genasis.
     
    #197     Feb 6, 2009
  8. Tums

    Tums

    you can use the arw_new() keyword.
    there are examples in the EasyLanguage manual.
     
    #198     Feb 6, 2009
  9. harsh

    harsh

    Hi Tums;
    will it work for range bars? since code specify only time bars. harsh
     
    #199     Feb 6, 2009
  10. Tums

    Tums

    Sure.
    also try arw_new_s().
     
    #200     Feb 6, 2009
Thread Status:
Not open for further replies.