eld extensions

twhmark

Newbie
Messages
1
Likes
0
I have TS 2000i and have received an eld extension file.
What is an eld file and can I use it with 2000i?
thanks in advance
twhmark
 
eld is a later version of easylanguage code that cannot be used in TS2000i. However, if you know someone with a later version of TS then you could ask them to open it and send you a text file. Some editing would be needed but in most cases I have been able to get most studies that were written as eld to work in TS2000i.


Paul
 
some of the ELD code (code, not file) will work in TS2000i.

if you post the ELD, I can open it and post the text version here.
you can then copy and paste the text code into TS2000i and generate your own ELS indicator.
 
I have both 2000i and ts 8.2 , how can i open a eld and convert it to text file.
reply please
thanks
 
Open the eld file in Easylanguage then copy the contents and paste it into Notepad or some similar text based application.


Paul
 
color charts:

Code:
[LegacyColorValue = true]; 

inputs: Price(Close), Length(10), BarsBack(3), UpColor(blue), DownColor(red),Displace( 0 ) ; 
var: AvgExp( 0 ); 

AvgExp = XAverage( Price, Length ) ; 

if AvgExp > AvgExp[BarsBack] then setplotcolor(1,UpColor); 
if AvgExp < AvgExp[BarsBack] then setplotcolor(1,DownColor); 


Plot1[Displace]( AvgExp, "AvgExp" ) ;
 
HA


Code:
Input: period(8);

Condition1 = close > value1 ;
Condition2 = close < value1 ;

{ OPTIONAL STEP: Replace HIGH and LOW with your own formulas for the high and low 
  prices of the PaintBar.  Note that Value1 and Value2 are numeric variables, temporary 
  holding places for the results of the numeric formulas. }

Value1 = average(close,8)[3] ;
Value2 = 10925 ;

{ Leave the following as is.  The plot is not named because there is only one PaintBar 
  plot - with two sub-plots - and the default names Plot1, Plot2 will be adequate.  The 
  alert does not include a description because the alerting criteria and the plotting 
  criteria are the same, and the description will be redundant. }

if Condition1 then
	begin
	PlotPaintBar( high, low, open, close, "range", Blue, default, 3  ) ;
	end ;
if condition2 then
	begin
		PlotPaintBar( high, low, open, close, "range", Red, default, 3  ) ;
	Alert ;

	end ;
	


	plot5(value1,"TTWHA");
 
Hi Zt3K,

Many thanks for the help and your prompt response
gratefully
rvlv

color charts:

Code:
[LegacyColorValue = true]; 

inputs: Price(Close), Length(10), BarsBack(3), UpColor(blue), DownColor(red),Displace( 0 ) ; 
var: AvgExp( 0 ); 

AvgExp = XAverage( Price, Length ) ; 

if AvgExp > AvgExp[BarsBack] then setplotcolor(1,UpColor); 
if AvgExp < AvgExp[BarsBack] then setplotcolor(1,DownColor); 


Plot1[Displace]( AvgExp, "AvgExp" ) ;
 
Hi z3tk,
many thanks
regards
rvlv

color charts:

Code:
[LegacyColorValue = true]; 

inputs: Price(Close), Length(10), BarsBack(3), UpColor(blue), DownColor(red),Displace( 0 ) ; 
var: AvgExp( 0 ); 

AvgExp = XAverage( Price, Length ) ; 

if AvgExp > AvgExp[BarsBack] then setplotcolor(1,UpColor); 
if AvgExp < AvgExp[BarsBack] then setplotcolor(1,DownColor); 


Plot1[Displace]( AvgExp, "AvgExp" ) ;
 
Top