jhb0331 7 posts msg #81769 - Ignore jhb0331 | 
10/26/2009 1:28:07 PM
  Has anyone heard of Hull Moving Average formula and could it be decoded to work in stockfetcher ?  I haven't the expertise to make it work with stockfetcher.  Continue to get syntax errors.
 
 Formula:  Integer(SquareRoot(Period)) WMA [2 x Integer(Period/2) WMA(Price)
 - Period WMA(Price)]
 
 Here is MetaStock Formula for it:  period:=Input("Period",1,200,20) ;
 sqrtperiod:=Input("Square Root of Period",1,20,4);
 Mov(2*(Mov(C,period/2,W))-Mov(C,period,W),sqrtperiod,W); 
 
 SuperCharts Formula:  Input: period (Default value 20)
 waverage(2*waverage(close,period/2)-waverage(close,period), SquareRoot(Period)) 
 
 This is supposed to be a great MA stock play.  Any thoughts
 
  |