Metastock Formula Help

#1
Hi Traderji,
I need an Metastock formula for "Willams %R" with Period -14 and Williams %R moving average of 10. as shown in the attached picture. Can you please help me in this. Thank You
 

Attachments

U

uasish

Guest
#2
Hi Traderji,
I need an Metastock formula for "Willams %R" with Period -14 and Williams %R moving average of 10. as shown in the attached picture. Can you please help me in this. Thank You
Lakefire,
Just copy paste the following :
....................................8...........................................
a:= WillR(14);
b:= Mov(a,10,S);
a;
b;
...............................8...................................
Asish
 
#3
Ashish,
Thank You for the help. One more request,Can you any way smoothen out the averages so that it does not have that many crossovers. I mean, can you remove those minute crossovers. Once again Thank you for the help.

Lakefire
 
#4
Ashish,
Thank You for the help. One more request,Can you any way smoothen out the averages so that it does not have that many crossovers. I mean, can you remove those minute crossovers. Once again Thank you for the help.

Lakefire
Try this.......

---------------8-----------------

a:= WillR(14);
b:= Mov(Mov(a,10,S),5,S);
a;
b;

---------------8-----------------
 

Similar threads