Custom series not recognised

Hi all,

I just created a custom series following the tutorial slides and saved it in my custom series list named “ADvolSP500”.

In a screener rule I then tried to call the custom series in the following command…

EMA(3,0,$ADvolSP500)>EMA(6,0,$ADvolSP500)

…but get the following error: " Invalid command ‘$ADvolSP500’ "

The same error occurs if I change the syntax to include the getseries command

EMA(3,0,getseries(“$ADvolSP500”))>EMA(6,0,getseries(“$ADvolSP500”))

What am I doing wrong?

you have to use the exact custom series name which is without $.

This should work:
EMA(3,0,getseries(“ADvolSP500”))>EMA(6,0,getseries(“ADvolSP500”))

Yep, that works! Thanks :slight_smile: