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.

Add logic to scan for stocks where today's volume is higher than 50 Day average volume

I want to add a logic to my existing scan where it will pull stocks where today's volume is higher than 50 day average volume. Can you help with that?

This is my current query.

[type = stock]
and [exchange is NYSE]
or [exchange is NASDAQ]
and [RSI(14) > 50.0]
and [RSI(14) < 72.0]
and [ATR(14) > .35]
and [MACD Signal(12,26,9) > 0.0]
and [Full Stoch %K(14,3,3) < 80.0]
and [outstanding shares < 300,000,000]
and [Close < 50]
and [optionable is true]
and [Volume >300,000]
and [Slow Stoch %D(14,3) < 80.0]
and [today's ema(9,close)*1.04 > close]
and [today's ema(9,close) < close]
and [SCTR >80]

Comments

  • markdmarkd mod
    edited August 2017
    I've re-arranged things a little bit. Things that describe the stock in general are first, then things that describe what its doing now. Not necessary to running the scan, but makes it easier to think about what you want and where to make edits.

    Also, I added a pair of brackets around your exchanges. Without them, you will get anything that matches any condition in your entire scan, instead of just the particular combination you are looking for.

    [
    [exchange is NYSE]
    or
    [exchange is NASDAQ]
    ]

    and [type = stock]
    and [optionable is true]

    and [outstanding shares < 300,000,000]
    and [Volume >300,000]
    and [volume > SMA(50,volume)] // volume greater than 50 day average

    and [SCTR >80]

    and [Close < 50]
    and [ATR(14) > .35]

    and [today's ema(9,close)*1.04 > close]
    and [today's ema(9,close) < close]

    and [Full Stoch %K(14,3,3) < 80.0]
    and [Slow Stoch %D(14,3) < 80.0]

    and [RSI(14) > 50.0]
    and [RSI(14) < 72.0]

    and [MACD Signal(12,26,9) > 0.0]

Sign In or Register to comment.