Jump to content

Larry willams


Guest leospartain

Recommended Posts

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.

Link to comment
Share on other sites

Guest leospartain

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...