SAFeTRADE 657 posts msg #136065 - Ignore SAFeTRADE modified | 
5/26/2017 12:09:44 AM
  Can you tell me if this is the correct formula for the Hull moving average:
 
 set{a, cwma(close,4)}
 set{a2, a * 2}
 set{a3, cwma(close,8)}
 set{a4, a2 - a3}
 
 /*set{a5, pow(8,0.50)}*/
 set{a6, cwma(a4,4)}
 
 symlist(aapl,spy,dia,qqq)
 
 draw a6 on plot price
 draw ema(8)
 
  | 
Mactheriverrat 3,175 posts msg #136066 - Ignore Mactheriverrat | 
5/26/2017 12:59:54 AM
  This link might help
 
 Info on Hull Moving averages
 
 
  | 
four 5,087 posts msg #136067 - Ignore four modified | 
5/26/2017 6:21:26 AM
  Good job with the square root.
 
 ---->>> Almost a year ago when this discussion happen...
 four
 3,678 posts
 msg #128939
 modified 	6/4/2016 9:07:26 PM
 
 http://www.stockfetcher.com/forums2/Announcements/More-Math-Functions-Available/32061/-1/32061
 
 http://www.stockfetcher.com/forums2/Announcements/Many-More-Math-Functions/45281/-1/45281
 
 
 guru_trader
 485 posts
 msg #53923
 - Ignore guru_trader
 modified 8/9/2007 2:20:06 AM
 
 And, if you want the root of a function simply raise your measure to the decimal equivalent of its fraction. For example ...
 
 the 1st root of the CLOSE = close^(1/1)
 the 2nd (square) root of the CLOSE = close^(1/2) 
 the 3rd (cube) root of the CLOSE = close^(1/3)
 the 4th root of the CLOSE = close^(1/4)
  	    
 
  | 
SAFeTRADE 657 posts msg #136080 - Ignore SAFeTRADE | 
5/26/2017 3:48:18 PM
  Thanks Four
 
  |