hi there,
i want to screen stocks with the swing teller indicator https://www.prorealcode.com/prorealtime-indicators/swing-teller-indicator/?aid=31335&sa=0
but when i write it down as follows
c1 = CALL "PRC_swing teller live count2"[20] = 2
the prt_code shows an exclamation mark. What am i doing wrong?
for example i want to screen stocks with 2 or 1 or 9 value of the indicator above.
thank you.
You cannot use multiple assignments on the same line, make it:
c1 = CALL "PRC_swing teller live count2"[20]
c2 = (c1 = 2)
ok now i get the message the “prc_swing teller live count2” returns 0 values but your code needs 1.
what am i doing wrong again?
Because that indicator returns nothing. It only plots on the charts.
You need to modify it to return what you need.