High Volume runners screening

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

    Hi,

    I am very new and working on a screener script that needs these three conditions:

    Volume today >30,000

    Price 4% above previous day close

    Timeframe for screens set to 20 minutes after market open

    Can these three conditions be coded into a script? What are the related variables that i can use?

    Thank you so much!

    #171446 quote
    robertogozzi
    Moderator
    Master

    There you go:

    Timeframe(Daily)
    PreviousClose = close[1]
    TodayVol = volume
    Timeframe(default)
    c1 = close >= (PreviousClose * 1.04)
    c2 = TodayVol > 30000
    c3 = time = 092000  //or whatever time needs to be
    Cond = c1 and c2 and c3
    Screener[Cond]
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

High Volume runners screening


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
alvaroau @alvaroau Participant
Summary

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

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 06/09/2021
Status: Active
Attachments: No files
Logo Logo
Loading...