Jump to content

can anyone code this ELD to MT4 indicator?


Recommended Posts

Re: can anyone code this ELD to MT4 indicator?

 

How do you use these indicators for trading? ( for entry or exit )

 

Thanks.

 

As for the %D Times, Just need to use the standard oscillator will do.

There is not much different.

 

You can also verify this with the EURUSD H1 placed in tradestation as shown

see attached setting.

Link to comment
Share on other sites

Re: can anyone code this ELD to MT4 indicator?

 

Hi..

Also i have a good momentum indicator..

if it is convertable for MT4 that woudl be great

I have attached a pic..

To see the both times and mom indicator.. in one place..

This two tools are great for divergence..

 

can anyone replicate it in MT4

 

Thanks

 

http://i452.photobucket.com/albums/qq250/sillykiddo2008/MACDmomobetascreen.png

Link to comment
Share on other sites

Re: can anyone code this ELD to MT4 indicator?

 

[LegacyColorValue = true]; 

inputs: 
PriceH( High ),  
PriceL( Low ), 
PriceC( Close ), 
StochLength( 5 ), 
SmoothingLength1( 5 ), { used to slow FastK to FastD = SlowK }
SmoothingLength2( 2 ), { used to slow FastD to SlowD }
SmoothingType( 1 ); { pass in 1 for Original, 2 for Legacy }

variables:
oFastK( 0 ), 
oFastD( 0 ), 
oSlowK( 0 ), 
oSlowD( 0 ) ;

Value1 = Stochastic( 
PriceH,  
PriceL, 
PriceC, 
StochLength, 
SmoothingLength1, 
SmoothingLength2, 
SmoothingType, 
oFastK, 
oFastD, 
oSlowK, 
oSlowD ) ;

Plot1( oSlowD, "SlowD", Green ) ;

{ Alert criteria }
{ ** Copyright (c) 2001-2002 Wayne Delph. ** }

Link to comment
Share on other sites

Re: can anyone code this ELD to MT4 indicator?

 

[LegacyColorValue = true]; 

inputs: 
FastLength( 4 ), 
SlowLength( 7 ), 
MACDLength( 17 ) ; 

Variables:
vMACD(0),
vAvg(0),
vMACDDiff(0);

vMACD = MACD( Close, FastLength, SlowLength );
vAvg = XAverage( vMACD, MACDLength );
vMACDDiff = vMACD - vAvg;


{Plot1( MACD( Close, Fastength, SlowLength ), "MACD" ) ;}
{Plot2( XAverage( Plot1, MACDLength ), "MACDAvg" ) ;}
Plot1( vMACDDiff, "MACD TIMES", Red ) ;
Plot2( 0, "ZeroLine", Cyan ) ;

{ Alert criteria }
{ ** Copyright (c) 2001-2002 Wayne Delph. ** }

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...