High volume beginning of session

Viewing 15 posts - 16 through 30 (of 33 total)
  • Author
    Posts
  • #221675 quote
    marco7630
    Participant
    New

    First take the average daily volume of last 30 days. For stock IMVT this was the day before yesterday (25-09-23) 971K. Yesterday the volume on this stock was 5.3 million in the first hour. This is 5.45 times the average 30 day volume (5.45m/971k).

    This is above the threshold of at least half the 30 day average volume within the first hour. So, if the volume the first hour of trading day would have been above 486k (971/2), it should be shown in the screener.

    #221688 quote
    robertogozzi
    Moderator
    Master

    I realized there was a glitch in line 8, so I commented it out.

    in addition I added a condition to ignore equities with RANGE=0 (there was no trading):

    Timeframe(Daily)
    VolAvg = average[30,0](volume)
    c1     = VolAvg > 25000
    //
    Timeframe(default)
    N = 1                     //1=30mn-TF, 2=15mn-TF, 3=10mn-TF, 6=5mn-TF, 30=1mn-TF
    FirstHalfHour = 153000
    //c2 = 0
    IF OpenTime = FirstHalfHour THEN
       c2 = summation[N](volume) > (VolAvg / 2)
    ENDIF
    c3 = close > 4
    c4 = range > 0
    Cond = c1 AND c2 AND c3 AND c4
    SCREENER[Cond](VolAvg AS "Vol average")
    #221746 quote
    marco7630
    Participant
    New

    Hi Roberto,

     

    Unfortunately no results while  stock WDAY meets the criteria.

     

    gr Marco

    #221747 quote
    JS
    Participant
    Veteran

    Hi @marco7630

    Use your IG or IB because the volumes don’t match…

    When you use IB do you have “real-time” access to the Nasdaq shares…?

    #221750 quote
    marco7630
    Participant
    New
    What does IG or IB stand for?
    #221751 quote
    phoentzs
    Participant
    Master
    These are brokers…
    #221752 quote
    JS
    Participant
    Veteran

    These are the two brokers that ProRealTime works with…

    (IG is mainly of the CFD contracts and IB (Interactive Brokers) is mostly futures contracts)

    What version of PRT are you working on…?

    #221757 quote
    marco7630
    Participant
    New
    I have no idea. I do not use the prorealtime platform to do trades
    #221758 quote
    JS
    Participant
    Veteran

    Okay, try this screener…

       
    TimeFrame(Daily)
    Avg30Vol=Average[30](Volume)
    C1=Avg30Vol>250000
    C2=Close>4
    
    TimeFrame(30 minutes)
    If OpenTime=153000 then
    xVolume=Volume
    EndIf
    C3=xVolume>=Avg30Vol*0.5
    
    Screener[C1 and C2 and C3](xVolume as "xVolume", Avg30Vol as "Avg30Vol")
    #221782 quote
    marco7630
    Participant
    New
    Hi Roberto, I get results now:-) What do i need to add to see only stocks that are above the EMA50? gr Marco
    #221785 quote
    JS
    Participant
    Veteran
    With which screener do you get results…?
    #221786 quote
    marco7630
    Participant
    New
    TimeFrame(Daily)
    Avg30Vol=Average[30](Volume)
    C1=Avg30Vol>250000
    C2=Close>4
    TimeFrame(30 minutes)
    If OpenTime=153000 then
    xVolume=Volume
    EndIf
    C3=xVolume>=Avg30Vol*0.5
    Screener[C1 and C2 and C3](xVolume as “xVolume”, Avg30Vol as “Avg30Vol”)
    #221789 quote
    JS
    Participant
    Veteran

    What timeframe do you want to use for the EMA50…?

    TF (daily) or TF(30 minutes)

    #221790 quote
    JS
    Participant
    Veteran
    Try this one…  
    TimeFrame(Daily)
    EMA50=ExponentialAverage[50](close) 
    Avg30Vol=Average[30](Volume)
    C1=Avg30Vol>250000
    C2=Close>4
    C4=Close>EMA50
    
    TimeFrame(30 minutes)
    If OpenTime=153000 then
    xVolume=Volume
    EndIf
    C3=xVolume>=Avg30Vol*0.5
    
    Screener[C1 and C2 and C3 and C4](xVolume as "xVolume", Avg30Vol as "Avg30Vol")
    #221792 quote
    marco7630
    Participant
    New
    Hi JS,   All the results are above the EMA50. But the results are not correct. For example stock FUL. Has an average 30 day volume (sma30) of around 300k. First hour candle yesterday was only 58k which is below the 50% of the average daily volume. However, it is in the screener results.   gr Marco
Viewing 15 posts - 16 through 30 (of 33 total)
  • You must be logged in to reply to this topic.

High volume beginning of session


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 32 replies,
has 4 voices, and was last updated by JS
2 years, 5 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 09/20/2023
Status: Active
Attachments: 1 files
Logo Logo
Loading...