Best Stocks & ETF Screener

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #211534 quote
    olewag
    Participant
    New

    Hi there fellow Traders.

    Can someone help me with coding these parameter for my scanner:

    Maybe you can help me and send me to code:
    – Markt cap larger than $2bln
    – price above SMA 20
    – price above SMA 50
    – price over 10$
    – price over SMA 200
    – average volume 2million
    – change up 3% (on that day)
    – relative volume over 1
    – current volume over 1 million
    – institutional owners 10% (if possible)
    Would help me so much. Thanks and Best wishes.
    Ole
    #211537 quote
    robertogozzi
    Moderator
    Master

    Only post in the language of the forum that you are posting in. For example English only in the English speaking forums and French only in the French speaking forums. Thank you 🙂

    I moved it from the German forum.

    A couple of questions:

    • what do you mean by relative volume?
    • what do you mean by institutional owners 10%?
    #211539 quote
    olewag
    Participant
    New

    The relative volume means:

    https://school.stockcharts.com/doku.php?id=technical_indicators:rvol

    see enclosed text.

    And 10% of institutional owners means, are there any big players like hedge funds involved … at finviz you can screen that too.

    Thanks

    Bildschirmfoto-2023-03-14-um-11.58.36.jpg Bildschirmfoto-2023-03-14-um-11.58.36.jpg Bildschirmfoto-2023-03-14-um-11.58.48.png Bildschirmfoto-2023-03-14-um-11.58.48.png
    #211607 quote
    robertogozzi
    Moderator
    Master

    There you go:

    LB       = 20                           //LookBack periods
    MarktCap = (volume * close) > 2000000
    Sma20    = close > average[20,0](close)
    Sma50    = close > average[50,0](close)
    curPrice = close > 10
    Sma200   = close > average[20,0](close)
    VolAvg   = average[LB,0](volume) > 2000000
    DayChng  = (((close * 100 / Dopen(0)) - 1) * 100) > 3
    RelVOL   = (volume / average[LB,0](volume)) > 1
    Cond     = MarktCap AND Sma20 AND Sma50 AND curPrice AND Sma200 AND VolAvg AND DayChng AND RelVOL
    SCREENER[Cond](close AS "Current Price")

    institutional owners are not known

    MarktCap is not known, so I simply multiplied the current price by the current volume

    – to test iit I had to change some figures, mainly volume and volume averages and price.

    As it is above I fear no signal can be returned.

    olewag thanked this post
    #211609 quote
    olewag
    Participant
    New

    Wow what a genius are you then … absolut amazed – Thank you Sir _ appreciate it so much !!! Your are the Best … Thankyou. wow.

    robertogozzi thanked this post
    #211678 quote
    GraHal
    Participant
    Master

    Typo in Line 6, should read …

    Sma200   = close > average[200,0](close)
    robertogozzi thanked this post
    #211698 quote
    robertogozzi
    Moderator
    Master

    Well spotted GraHal  🙂

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

Best Stocks & ETF Screener


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
olewag @olewag Participant
Summary

This topic contains 6 replies,
has 3 voices, and was last updated by robertogozzi
2 years, 12 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 03/14/2023
Status: Active
Attachments: 2 files
Logo Logo
Loading...