Biggest moving stock screeners

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #170171 quote
    Adriano250Adriano250
    Participant
    New

    Hi guys

    Could i get some help on creating a few screeners, looking at the daily charts, one for 30 day, one for 60, and 90, for stocks which have moved up the highest (minimum 20%).

     

    Thank you

    #170173 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    You want to find stocks that have set a  new high (20%+) in the last 30, 60, 90 days compared to the period prior to 30, 60, 90 days.

    Bear in mind that ProScreener has a 254-bar limit, so you can look back roughly 220, 190, 160 days.

    Here is the screener, simply duplicate it as many times as you need and for each duplicate change the P (period) number:

    P  = 30       //or 60, 90,…
    LB = Max(1,253 - P))
    H1 = highest[LB](high[P])
    H2 = H1 * 1.2
    c1 = summation[P](high >= H2)
    Screener[c1]
    Adriano250 and Francesco thanked this post
    #180353 quote
    FrancescoFrancesco
    Participant
    Veteran

    Hi Roberto, i tried to reverse the code in order to find stocks that have set a new low but didn’t work; can you please share the screener code for these?

    #180417 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    There you go:

    P  = 30       //or 60, 90,…
    LB = Max(1,253 - P))
    H1 = lowest[LB](low[P])
    H2 = H1 * 0.8
    c1 = summation[P](low <= H2)
    Screener[c1]
    Francesco thanked this post
    #180875 quote
    FrancescoFrancesco
    Participant
    Veteran

    There you go:

    Seems not to work as the high version… am i missing something?

    #180877 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    To me it works regularly (I tried it on the daily).

    x-3.jpg x-3.jpg
    #180890 quote
    FrancescoFrancesco
    Participant
    Veteran

    A me funziona regolarmente (l’ho provato sul giornaliero).

    I run it also daily… look at this example, that’s not a low

    example.png example.png
    #180896 quote
    robertogozzirobertogozzi
    Moderator
    Legend

    Sorry for posting in the wrong language (I just translated it).

    With IG (CFDs) it works like a charm, with PRT (Futures) it works with some stocks, not with other ones.

    You need to open a ticket with PRT’s assistance, as I cannot find any reason why that happens.

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

Biggest moving stock screeners


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Adriano250 @adriano250 Participant
Summary

This topic contains 7 replies,
has 3 voices, and was last updated by robertogozzirobertogozzi
4 years, 10 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 05/22/2021
Status: Active
Attachments: 2 files
ProRealCode ProRealCode
Loading...