Guest leospartain Posted May 16, 2013 Report Posted May 16, 2013 Who has Larry Williams will trend pls? Kindly upload . thanks. Quote
Cosmos Posted May 16, 2013 Report Posted May 16, 2013 There is one WILLGO also by Larry Williams, if someone has pls. a Course by LW called Short Terms Trading is also required, if some kind hearted pls share. (the one already posted does not have complete chain - missing some files - hence not opening up) Thanks in adavance. Quote
Guest leospartain Posted May 16, 2013 Report Posted May 16, 2013 OK I'VE MANAGE TO GET THE CODE FOR WILLTREND CAN SOME CODER HERE CODE IT TO MT4 PLS? Inputs: Period(66), ATRMultiplication(2.236), MidPriceVar(10); Variables: upperBand(0), lowerBand(0), atr(0), trail(0), midPrice1(0), midPrice2(0), midPrice(0); atr = AvgTrueRange(Period) * ATRMultiplication; midPrice1=Lowestvalue(low,MidPriceVar); midPrice2= Highestvalue(high,MidPriceVar); midPrice= (midPrice1 + midPrice2)/2; lowerBand= midPrice + atr; upperBand= midPrice - atr; trail = IFF(Close > trail[1] and Close[1] > trail[1], MaxList(trail[1], upperBand), IFF(Close < trail[1] and Close[1] < trail[1], MinList(trail[1], lowerBand), IFF(Close > trail[1], upperBand, lowerBand))); Plot1(trail); if (Close > trail) then SetPlotColor(1, green) else SetPlotColor(1, red); Quote
hankt80 Posted May 16, 2013 Report Posted May 16, 2013 This L.W's trend indi looks really good, shame they dont have it for mt4, I hope someone can code it. Quote
mtuppers Posted May 17, 2013 Report Posted May 17, 2013 OK I'VE MANAGE TO GET THE CODE FOR WILLTREND CAN SOME CODER HERE CODE IT TO MT4 PLS? Inputs: Period(66), ATRMultiplication(2.236), MidPriceVar(10); Variables: upperBand(0), lowerBand(0), atr(0), trail(0), midPrice1(0), midPrice2(0), midPrice(0); atr = AvgTrueRange(Period) * ATRMultiplication; midPrice1=Lowestvalue(low,MidPriceVar); midPrice2= Highestvalue(high,MidPriceVar); midPrice= (midPrice1 + midPrice2)/2; lowerBand= midPrice + atr; upperBand= midPrice - atr; trail = IFF(Close > trail[1] and Close[1] > trail[1], MaxList(trail[1], upperBand), IFF(Close < trail[1] and Close[1] < trail[1], MinList(trail[1], lowerBand), IFF(Close > trail[1], upperBand, lowerBand))); Plot1(trail); if (Close > trail) then SetPlotColor(1, green) else SetPlotColor(1, red); you should try forex-tsd forum. if code is not copy righted you might have chance to get it coded. Then will shared on that forum. Quote
hankt80 Posted May 18, 2013 Report Posted May 18, 2013 Yea I think mladen can code it or mrtools or someone else there. 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.