Possible fibo retracement

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #236267 quote
    marco7630
    Participant
    New

    Hi,

    Can you help me with following.

    I would like to see all the stocks that fit the following criteria.

    1. The price of the stock is above the EMA 20 week
    2. The price of the stock is at least 25% lower than the 52 week high
    3. The percentage gain of the stock over the last 3years is more then 400%

    Thanks

     

    gr Marco

    #236268 quote
    Iván González
    Moderator
    Master

    It could be something like this:

    //-------------------------
    //The price of the stock is above the EMA 20 week
    ema20=average[20,1](close)
    c1 = close > ema20
    //-------------------------
    //The price of the stock is at least 25% lower than the 52 week high
    lmax=highest[52](high)
    dist=25
    c2 = close < (100-dist)/100*lmax
    //-------------------------
    //The percentage gain of the stock over the last 3years is more then 400%
    gain=(close/close[3*52]-1)*100
    c3 = gain > 400
    //-------------------------
    setup = c1 and c2 and c3
    
    screener[setup]
    #236273 quote
    marco7630
    Participant
    New

    thanks

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

Possible fibo retracement


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 2 replies,
has 2 voices, and was last updated by marco7630
1 year, 7 months ago.

Topic Details
Forum: ProScreener: Market Scanners & Detection
Language: English
Started: 08/08/2024
Status: Active
Attachments: No files
Logo Logo
Loading...