above VWAP with volume abovre 10000 today

Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • #252793 quote
    Zasinas2000Zasinas2000
    Participant
    New

    MinDailyCapital = 10000
    MinPrice = 1
    MaxPrice = 20

    setup = (volume[2] * DClose(2) > MinDailyCapital or volume[1] * DClose(1) > MinDailyCapital or volume * DClose(0) > MinDailyCapital)AND close > MinPrice AND close < MaxPrice AND (close / DClose(1)-1) * 100 > 5

    if intradaybarindex=0 then //day<>day[1] then
    d=1
    VWAP=typicalprice
    else
    d=d+1
    if volume >0 then
    VWAP = SUMMATION[d](volume*typicalprice)/SUMMATION[d](volume)
    endif
    endif

    screener[setup and close>VWAP]

     

    can someonw help me with the code. Instead of MinimumDailyCapital, I ineed minimum trades shares today is 10.000 can someone help me with this?

    #252795 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    Please post your topic in the correct forum:

    •  ProRealTime Platform Support: only platform related issues.
    • ProOrder: only strategy topics.
    • ProBuilder: only indicator topics.
    • ProScreener: only screener topics
    • General Discussion: any other topics.
    • Welcome New Members: for new forum members to introduce themselves.

    I moved it from ProBuilder. Thanks 🙂

    Zasinas2000 thanked this post
    #252796 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    You mean replacing the current conditions with Volume, like this one?

    //MinDailyCapital = 10000
    MinTradedShares = 10000
    //MinPrice = 1
    //MaxPrice = 20
    
    //setup = (volume[2] * DClose(2) > MinDailyCapital or volume[1] * DClose(1) > MinDailyCapital or volume * DClose(0) > MinDailyCapital)AND close > MinPrice AND close < MaxPrice AND (close / DClose(1)-1) * 100 > 5
    setup = (volume >= MinTradedShares)
    if intradaybarindex=0 then //day<>day[1] then
    d=1
    VWAP=typicalprice
    else
    d=d+1
    if volume >0 then
    VWAP = SUMMATION[d](volume*typicalprice)/SUMMATION[d](volume)
    endif
    endif
    
    screener[setup and close>VWAP]
    Zasinas2000 and Iván González thanked this post
    #252800 quote
    Zasinas2000Zasinas2000
    Participant
    New

    hi, yes but price must be 1-20usd. Thanks in advance

    #252802 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    There you go:

    //MinDailyCapital = 10000
    MinTradedShares = 10000
    //MinPrice = 1
    //MaxPrice = 20
     
    //setup = (volume[2] * DClose(2) > MinDailyCapital or volume[1] * DClose(1) > MinDailyCapital or volume * DClose(0) > MinDailyCapital)AND close > MinPrice AND close < MaxPrice AND (close / DClose(1)-1) * 100 > 5
    setup = (volume >= MinTradedShares)
    if intradaybarindex=0 then //day<>day[1] then
       d=1
       VWAP=typicalprice
    else
       d=d+1
       if volume >0 then
          VWAP = SUMMATION[d](volume*typicalprice)/SUMMATION[d](volume)
       endif
    endif
    
    Price = (close >= 1) AND (close <= 20)
     
    screener[setup and close>VWAP and Price]
    Zasinas2000 and Iván González thanked this post
    #252804 quote
    robertogozzirobertogozzi
    Moderator
    Legend
    #252805 quote
    Zasinas2000Zasinas2000
    Participant
    New

    hi and big big thanks. but it says something is wrong with line 18.

    proreal-code.jpg proreal-code.jpg
    #252807 quote
    Iván GonzálezIván González
    Moderator
    Legend

    Use MyPrice instead of Price

    Zasinas2000 and robertogozzi thanked this post
    #252808 quote
    Zasinas2000Zasinas2000
    Participant
    New

    thanks a lot 🙂

    #252809 quote
    Zasinas2000Zasinas2000
    Participant
    New

    Dear Ivan,

    Can we also add that stock must be at least 7% up for today? Is that possible?

    Thanks in advance

    #252810 quote
    Zasinas2000Zasinas2000
    Participant
    New

    I meant change 7% up for today or more. Thanks.

    #252961 quote
    JSJS
    Participant
    Master

    Hi,

    TodayChangePerc = (Close / DOpen(0) – 1) * 100 >= 7

    #252964 quote
    Zasinas2000Zasinas2000
    Participant
    New

    thanks a lot.

    JS thanked this post
    #252965 quote
    Zasinas2000Zasinas2000
    Participant
    New

    which line should I add it? it gives me an error when I am adding it. Thanks in advance

    #252967 quote
    JSJS
    Participant
    Master

    Try this one:

    MinTradedShares = 10000
     
    setup = (volume >= MinTradedShares)
    if intradaybarindex=0 then //day<>day[1] then
    d=1
    VWAP=typicalprice
    else
    d=d+1
    if volume>0 then
    VWAP = SUMMATION[d](volume*typicalprice)/SUMMATION[d](volume)
    endif
    endif
    
    myPrice=(close>=1) AND (close<=20)
    
    TodayChangePerc=(Close/DOpen(0)-1)*100>=7
     
    screener[setup and close>VWAP and myPrice and TodayChangePerc]
Viewing 15 posts - 1 through 15 (of 16 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

above VWAP with volume abovre 10000 today


ProScreener: Market Scanners & Detection

New Reply
Author
Summary

This topic contains 15 replies,
has 4 voices, and was last updated by Zasinas2000Zasinas2000
11 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 10/22/2025
Status: Active
Attachments: 1 files
ProRealCode ProRealCode
Loading...