Your software is NOT 100% EasyLanguage compliant. Sorry, can't help you further. Pls contact your software vendor for assistance.
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
----------------------------------------------------- Syntax error - line 45 ?? SetPlotColor[1](1, upcol) Thanks TUMS
I have re-checked the code. It is working ok. Something is amiss in your software. You should contact the vendor for assistance.
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>
code for Red Light / Green Light note: updated version 1.1 (added option to use exponential moving average)
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.