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.

Hi - can someone explain why I can not do this scan in a stockcharts list.

This works until I ad the list.

[group is SP500]
AND [ROC(31) > 0]
Rank by ROC(31)

and [favorites list is 26] // Chaikings mm

Best Answer

  • markdmarkd mod
    Answer ✓
    [group is SP500]
    and [favorites list is 26] // Chaikings mm
    AND [ROC(31) > 0]
    Rank by ROC(31)

    "rank by" must be the LAST statement.

    Note also: this scan will only look at that are 1. in sp500 and 2. ALSO in list 26 - in other words, Sp500 stocks in list 26.

    If you want all stocks in either the group or the list (i.e. one or the other) you would write

    [
    [group is sp500]
    or
    [favorites list is 26]
    ]

    etc.

    All the brackets are required.


Answers

Sign In or Register to comment.