Want to scan for three specific things.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #196598 quote
    SimonGM711SimonGM711
    Participant
    New

    Hi everyone!

    I am seeing all of these complex ways to scan by using prorealtime and I am simply looking for a code/codes to help me find stocks with certain criterias.

    I want to scan to find these three things:

     

    1. Stocks that are up 20% or more on the day.
    2. Stocks that have 3 000 000 shares in dollars.
    3. Stocks that cost at about 10-15$.
    Would highly appreciate any help on this.
    #196711 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    The number of shares cannot be known, but I wrote this code using VOLUME, instead (I have used +10% for testing, as +20% did not report any asset):

    c1 = close >= (close[1] * 1.10)   //+10%   (1.20 to scan for +20%)
    c2 = volume > 3000
    c3 = close >= 10 AND close <= 15
    SCREENER[c1 AND c2 AND c3]
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
ProRealAI ProRealAI New

Stuck on this ProBuilder code?

Describe what this topic is trying to build, in plain English, and ProRealAI writes the ProRealTime™ indicator, screener or system for you.

Available in 7 languages
Try ProRealAI

Want to scan for three specific things.


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
SimonGM711 @simongm711 Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by robertogozzirobertogozzi
4 years, 2 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 07/02/2022
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...