How can I check the volume of the last 10 days within an intraday screener?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #81493 quote
    marie123marie123
    Participant
    Junior

    Hello guys,

    I only want to screen stocks with an average trading volume over $10 millions per day. I chose 10 days for the average. But I have a problem with it.
    Can somebody please tell me how to check the average traded volume of the last 10 days? If I use an EOD screener, I would use this syntax:

    MinimumTradedCapital = 10000000
    MinimumVolume = average[10](volume*close)>MinimumTradedCapital
    
    SCREENER [MinimumVolume]

    But how can I do that when using an intraday screener? If I use this version above the calculation is made over the last 10 intraday periods and not the last 10 days.

    Thanks for any help!

    #81494 quote
    marie123marie123
    Participant
    Junior

    I just read some other postings and I think I found the answer. Let’s say I want to scan for an inside bar on the 15-minute timeframe. But I still want only to see stocks with a minimum traded volume of $10 millions per day on average, would this be correct then?

    timeframe(daily)
    MinimumTradedCapital = 10000000
    MinimumVolume = average[10](volume*close)>MinimumTradedCapital
    
    timeframe(default)
    insidebar = high[1]<high[2] and low[1]>low[2]
    
    SCREENER [MinimumVolume and insidebar]
    #81499 quote
    marie123marie123
    Participant
    Junior

    Problem solved.

    Nicolas thanked this post
Viewing 3 posts - 1 through 3 (of 3 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

How can I check the volume of the last 10 days within an intraday screener?


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marie123 @marie123 Participant
Summary

This topic contains 2 replies,
has 1 voice, and was last updated by marie123marie123
7 years, 11 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 09/27/2018
Status: Active
Attachments: No files
ProRealCode ProRealCode
Loading...