Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Recommended Posts

Posted

Re: can anyone code this ELD to MT4 indicator?

 

Hi..

This is a very good great cycle price oscillators.. if anyone can convert this indicator for MT4 that would be great...

 

Ask a friend who know the tradestation to convert, here the Macd Times.

 

MACD Times.mq4[/attachment:2kpytnb4]

Posted

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.

Posted

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

Posted

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. ** }

Posted

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. ** }

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...