eSignal EFS

Discussion in 'Trading Software' started by forsalenyc, Dec 9, 2008.

  1. Can anyone tell me what EFS file I need to download from www.esignalcentral.com so that my charts will display HH, HL, LH,LL, DT(double top), etc. and also is there a way to make symmetric triangle lines show up on my charts(like in attached file). or any other valuable indicators?
     
  2. hasn't anyone used EFS file sharing and found anything useful?
     
  3. You can try this. I modified an existing Esignal efs to Highlight HH in green, LL in red, and LH and HL in blue. Copy the following formula, then in Esignal go to Tools, then EFS, then Editor. Paste the formula, then using the Save Formula As icon, give it a name and save it in whichever folder you wish.

    Code:
    function preMain() {
    	setPriceStudy(true);
    	setStudyTitle("HH-LL");
    	setColorPriceBars(true);
    	setDefaultPriceBarColor(Color.black);
        
        var fp1 = new FunctionParameter("nInputLength", FunctionParameter.NUMBER);
            fp1.setName("Length");
            fp1.setLowerLimit(1);
            fp1.setDefault(20);
    }
    
    function main(nInputLength) {
    	var vC = close(0);
    	var vPH = high(-1);
    	var vPL = low(-1);
    
    	if(vC == null || vPH == null || vPL == null) return;
    
        if (high(0) > vPH) {
    		setPriceBarColor(Color.green);
        } 
        if(low(0) < vPL) {
    		setPriceBarColor(Color.red);
        }
        if(low(0) > vPL && high(0) < vPH) {
            setPriceBarColor(Color.blue);
        }
    
    	return;	
    }
    
    
     
  4. thx for the post...i'll definitely try this.
     
  5. is this a pay site?