Screener using EVWMA, help.

Forums ProRealTime English forum ProScreener support Screener using EVWMA, help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • #42262

    Hi, im trying to create a  simple screener using the Elastic Volume Weighted Moving Average. I use it as indicator on my charts, it is included into the ptr indicator and  i didnt have to create it.

    The condition for the screener i want to create is  –>    eVWMa[30]  crosses under WeightedAverage[30]

    the problem i have is it cant find the EvWMA and use it , i have try  to create it with this code  :

     

    //parameters :
    // period = 20

    IF BarIndex < period THEN
    eVWMA = Close
    ELSE
    N = Summation[period](Volume)
    eVWMA = ((N – Volume)*eVWMA + Volume*Close)/N
    ENDIF

     

    • Do i have to create a new indicator  for the eWVMA and then use it on the screener??
    • I need two indicators, for the first one i have no problem,  Indicator1=WeightedAverage[30](close) but what about the EWMa? i have tried Indicator2 = eWMa[30] unsuccesfully
    • Anyone can help me with the code, is just one condition.

    Thank you very much

     

    #42298

    You are right, the Elastic Volume Weighted Moving Average is not part of the simplified creation module. You need to add its formula directly into the screener code. Please find below the correct stock screener code that suit your query. Let me know if you need more assistance.

     

    #42326

    Thanks Nicolas !

Viewing 3 posts - 1 through 3 (of 3 total)

Create your free account now and post your request to benefit from the help of the community
Register or Login