Pre opening gap up

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #239868 quote
    marco7630
    Participant
    New
    Hello,
    Can you help me with the following:
    I would like to see all the stocks on a daily time frame that meet the following criteria.
    1. Close price above 4usd
    2. Average daily volume last 30 days above 200000
    3. The price of the stock is at least one week above the EMA200 day
    4. The pre-opening (pre market) price is at least 5% higher then the close price last trading day
    gr Marco
    #239875 quote
    JS
    Participant
    Senior

    Hi,
    A warning in advance 😉
    EMA200 is an issue with a screener regarding the maximum number of historical bars available.

    When there are 256 bars (Complete version) available, it won’t work with an EMA200…

    What do you mean by “Average daily Volume”? Which average should be used for the volume? AvgDailyVolume=Average[????](Volume)

    #239878 quote
    marco7630
    Participant
    New

    Average of 30 days

    #239880 quote
    JS
    Participant
    Senior

    Try this one:

     

    TimeFrame(Daily)
    
    AvgVol=Average[30](Volume)//Avg.Volume over 30 days
    EMA200=Average[200,1](Close)
    
    Cond1=Close>4 //Close is greater than 4 usd
    Cond2=Summation[30](AvgVol>200000)=30
    Cond3=Summation[5](Close>EMA200)=5
    Cond4=Open>=Close[1]*1.05
    
    Test=Cond1 and Cond2 and Cond3 and Cond4
    
    Screener[Test]
    Iván González thanked this post
    #239889 quote
    marco7630
    Participant
    New

    Thanks JS

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

Pre opening gap up


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 4 replies,
has 2 voices, and was last updated by marco7630
1 year, 4 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 11/01/2024
Status: Active
Attachments: No files
Logo Logo
Loading...