New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.

Converting TC2000 scan code to StockCharts scan code?

Can anyone tell me what the StockCharts scan code for the following T2000 scan code would be?

Thanks ....

AVGC20>=AVGC20.10 AND
AVGC20.10>=AVGC20.20 AND
XAVGC8>=AVGC20 AND
XAVGC8>=AVGC20.10 AND
(L1<=AVGC20 AND L1 <=XAVGC8) OR
(L<=AVGC20 AND L<=XAVGC8 AND C>XAVGC8)

Best Answer

  • markdmarkd mod
    Answer ✓
    AVGC20 would be sma(20,close); the .10 I'm guessing would be 10 days ago sma(...)

    XAVGC8 would be ema(8, close)

    L is probably low; L1 is probably 1 day ago low.

Answers

  • AVGC20>=AVGC20.10….sma(20,c) >= 10 days ago sma(20,c)
    AVGC20.10>=AVGC20.20….10 days ago sma(20,c) >= 20mdays ago sma(20,c)
    XAVGC8>=AVGC20….ema(8,c) >= sma(20,c)
    L1…one day ago Low
Sign In or Register to comment.