Why won't this simply RSI Screener Work?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #100607 quote
    Theopolis
    Participant
    New

    Hi All,

    I am pretty new to this so maybe I am just doing something wrong but I can’t understand why the most simple screener I am trying to make won’t work.

    I have tried several times to make a screener that simply looks for stocks that are below RSI30 right now. No matter which way I create this it does not seem to work.

    Should it not be as simple as the attached pic? It does not work at all.

    What am I doing wrong here?

    Cheers

    Jared

    Capture-2.png Capture-2.png
    #100614 quote
    Nicolas
    Keymaster
    Master

    The code you want should be like:

    test = rsi[14](close)[2]<=30
    
    screener[test]

    and launch it on a daily timeframe. (not tested).

    #100615 quote
    Theopolis
    Participant
    New

    BOOM! you’re the man Nicolas.

    What should i use if I wanted min price or min volume to it?

    #100632 quote
    Nicolas
    Keymaster
    Master

    You can add these simple conditions this way:

    test = rsi[14](close)[2]<=30
    minprice = close>20
    minvol = volume>500000
    
    screener[test and minprice and minvol]
    #100831 quote
    Theopolis
    Participant
    New

    Thanks again Nic

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.

Why won't this simply RSI Screener Work?


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Theopolis @theopolis Participant
Summary

This topic contains 4 replies,
has 2 voices, and was last updated by Theopolis
6 years, 9 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 06/14/2019
Status: Active
Attachments: 1 files
Logo Logo
Loading...