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.
Options

market cap problem

Good day,

My scanner worked fine before, except this week.

[country is US]
and [[[PctChange(80,close) > 15] or [PctChange(60,close) > 15]] and [Max(7,Close) < Max(60,Close)]]
and [market cap < 20000]

This is the main scanner. If I remove the market cap limit, the scan works fine. However, I want to limit the market cap of the stocks in my universe.

Anyone has any ideas? Thanks.

Comments

  • Options
    Seems to work fine as is. I re-arranged it for legibility. I think you had an extra pair of parens, which I removed.

    It gets 525 results after market close 3/16.

    [country is US]

    and [market cap < 20000]

    and [Max(7,Close) < Max(60,Close)]

    and

    [
    [PctChange(80,close) > 15]
    or
    [PctChange(60,close) > 15]
    ]

    But not all the results are stocks. I'm guessing if you want a market cap, you only want stocks. If so, this gets 351 hits. You could limit it further with a minimum market cap, too, e.g. and [market cap > 100] or whatever your lower limit is, if any. If you don't want OTC stocks, add and [ [exchange is NYSE] or [exchange is NASD] ]. With all conditions added (remove the //) , there are 43 results.


    [country is US]

    and [type is stock]
    and [group is not ETF]

    //and [ [exchange is NYSE] or [exchange is NASD] ]

    //and [market cap > 100]
    and [market cap < 20000]

    and [Max(7,Close) < Max(60,Close)]

    and

    [
    [PctChange(80,close) > 15]
    or
    [PctChange(60,close) > 15]
    ]
Sign In or Register to comment.