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...
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.
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]
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.
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?
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
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.
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
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
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
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
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. ** }
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. ** }
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
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 ?
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now