I am trying to the following Proscreener to show Hull moving average instead of Average. I can get for exponential but not Hull
Thanks if you can help.
indicator1 = close
indicator2 = Average[50](close)
c1 = (indicator1[1] CROSSES UNDER indicator2[1])
SCREENER[c1] (Variation AS "%Chg prev bar")
>> For clarity of messages on ProRealCode’s forums, please use the “insert code PRT” button to separate the text of the code part! Thank you! <<
You need first to setup a variable that contain the Hull moving average values, the Hull MA code is available in this blog article.