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

RSI intraday scan

Hi, is there any way for me to write a scan that check for stocks with RSI that went below 30 anytime of the trading day?

Tks.

Comments

  • Options
    markdmarkd mod
    edited November 2019
    Well, the simple answer is no. But:

    If you run a scan with that condition during the trading day, and the condition is true as of the most recent update at the time you run the scan, you will get results. If it was true as of an earlier update, but is not true as of the most recent update, you will not get a hit.

    Also, if you run the scan at the end of the day, and the RSI went below 30 during the day but closed above 30, you will not get a hit for that stock.

    Finally, the lowest time frame available for scanning is daily. You cannot scan for hourly, half hourly, 10 minutes, 5 minutes, etc. either during the day or after the close.
  • Options

    EOD scans

    // scan 20 - RSI crossing above 30

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [RSI(14) x 30.01]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - - -

    // Scan 20 - RSI Crossing below 70

    [type = stock] AND [COUNTRY = US]
    //and [SCTR > 90]
    and [70.01 x RSI(14)]
    AND [Daily Volume > 500000]
    AND [Daily Close > 10]

    - - - - - - - -

    // Scan 20BB - Stochastics RSI 14 xover 0.20 ... depending upon what chart you're looking at

    [type = stock] AND [country = US]

    //and [SCTR > 90]

    AND [Daily EMA(20,Daily Volume) > 500000]

    and [Daily EMA(20,Daily Close) > 10]

    AND [Daily stoch RSI(14) crosses 0.20]

    Hope the above can be of some assistance.

    Quill -












Sign In or Register to comment.