Jump to content

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

Recommended Posts

Guest leospartain
Posted

Who has Larry Williams will trend pls? Kindly upload .

thanks.

Posted

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.

Guest leospartain
Posted

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);

Posted
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.

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