sillykiddo Posted February 6, 2009 Report Posted February 6, 2009 Hi.. This is a very good great cycle price oscillators.. if anyone can convert this indicator for MT4 that would be great... Quote
tradershare Posted February 6, 2009 Report Posted February 6, 2009 Re: can anyone code this ELD to MT4 indicator? How do you use these indicators for trading? ( for entry or exit ) Thanks. Quote
KelvinHand Posted February 6, 2009 Report Posted February 6, 2009 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] Quote
KelvinHand Posted February 7, 2009 Report Posted February 7, 2009 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. Quote
sillykiddo Posted February 7, 2009 Author Report Posted February 7, 2009 Re: can anyone code this ELD to MT4 indicator? thanks for the mq4 .. but the mq4 put the graph in the second window is it possible to put it in chart? Quote
sillykiddo Posted February 7, 2009 Author Report Posted February 7, 2009 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 Quote
marketmaker Posted February 7, 2009 Report Posted February 7, 2009 Re: can anyone code this ELD to MT4 indicator? Please post TradeStation Chart with ALL cycle price oscillators. Thank you. Quote
sillykiddo Posted February 7, 2009 Author Report Posted February 7, 2009 Re: can anyone code this ELD to MT4 indicator? here it is.. in zip file Quote
marketmaker Posted February 7, 2009 Report Posted February 7, 2009 Re: can anyone code this ELD to MT4 indicator? I mean to post screenshot only. Thanks Quote
sillykiddo Posted February 7, 2009 Author Report Posted February 7, 2009 Re: can anyone code this ELD to MT4 indicator? market maker.. the screenshot your are looking at the yellow line one the price chart is the oscillators... thanks Quote
sonny Posted February 8, 2009 Report Posted February 8, 2009 Re: can anyone code this ELD to MT4 indicator? I do not have tradestation so post code of it and I can make MT Quote
sillykiddo Posted February 12, 2009 Author Report Posted February 12, 2009 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. ** } Quote
sillykiddo Posted February 12, 2009 Author Report Posted February 12, 2009 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. ** } Quote
sonny Posted February 13, 2009 Report Posted February 13, 2009 Re: can anyone code this ELD to MT4 indicator? How is this ? http://www.4shared.com/file/87416652/53d67aef/SillyMacd.html Quote
sonny Posted February 13, 2009 Report Posted February 13, 2009 Re: can anyone code this ELD to MT4 indicator? And how is Stochastics different to 5,2,1 High/Low Stochastics ? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.