keksParticipant
Average
I would like to incorporate this technical study (which can be added on ProRealTime charts) into my ProScreener. I am relatively new to coding and struggling to find this indicator in the library so would really appreciate if anyone could share what the programming code would be for this indicator.
Many thanks in advance!
Here is the prorealtime code of the Elastic Weighted Moving Average:
//parameters :
// period = 20
IF BarIndex < period THEN
eVWMA = Close
ELSE
N = Summation[period](Volume)
eVWMA = ((N - Volume)*eVWMA + Volume*Close)/N
ENDIF
I believe you’ll find easily how to incorporate it into your own screener code. If not, please let me know.
keksParticipant
Average
Superbly helpful, very much appreciated!!! Thank you