EasyLanguage Treasure Chest

Status
Not open for further replies.
Quote from Goalgetter:
-----------------------------------------------
Thanks
it was compiled however, the problem persits :
"QueryFunctionCode 'TSI'
C1018: The return value of the function is missing., line 1
C1003: The function 'TSI' does not exist or it contains errors and does not compile., line 11
QueryFunctionCode 'XAverage'"
The TSI function had been compiled, too.
So what errors is the software talking about?
Very funny.
GG

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
 
Quote from Tums:

Code for the BB BandWidth Indicator

This is a TUMS enhanced version:
I have added up/down trend color, plus gray color for lost of trend.


Right click on link... save... to your computer.
Do not use your browser to read the text file.
-----------------------------------------------------

Syntax error - line 45 ??

SetPlotColor[1](1, upcol)

Thanks TUMS
 
Quote from Goalgetter:
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>
 

Attachments

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.
 
Quote from 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.
you can use the arw_new() keyword.
there are examples in the EasyLanguage manual.
 
Status
Not open for further replies.
Back
Top