Long time below EMA50

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

    Hello,

    I would like to see on daily time frame all the stocks that meet following criteria:
    • The closingprice of the stock has been below the EMA50 for 120 days and now closes for first time above the EMA50

    Thanks

    gr Marco

    #220734 quote
    JS
    Participant
    Veteran

    Hi @Marco7630

    Hereby the screener:

    EMA50=ExponentialAverage[50](Close)
    
    C1=Summation[120](Close[1]<EMA50)=120
    C2=Close>EMA50
    
    Screener[C1 and C2]
    
    #220741 quote
    marco7630
    Participant
    New

    Thanks js

    JS thanked this post
    #222198 quote
    marco7630
    Participant
    New

    Hi Js,

     

    What is the code for following:

    The price of the stock times the average daily volume last 30 days should be above 50 million.

     

    Greetimgs Marco

    #222199 quote
    JS
    Participant
    Veteran

    Hi Marco,

    C1=Close*Average[30](Volume)>50000000

    Screener[C1]

    #222357 quote
    marco7630
    Participant
    New

    Hi JS,

     

    Is it possible to screen on 2 day period instead of 1 day or 1 week?

     

    gr Marco

    #222359 quote
    JS
    Participant
    Veteran
    Hi Marco, No, not possible..

    (But you can use 48 hours, for example…)

    #222362 quote
    JS
    Participant
    Veteran

    Hi Marco,

    Sorry, it’s about screeners…

    Yes, you can make almost any combination… (also 2 days)…

    #222370 quote
    marco7630
    Participant
    New
    Ok, what code should i use than if i want to see all stocks that have gone up 5% on a 2day timeframe?
    #222371 quote
    JS
    Participant
    Veteran
    Try this one:  
    TimeFrame(Daily)
    Gain=(Close-Close[2])/Close[2]
    C1= Gain>0.05
    Screener[C1](Gain*100 as "Procent gain in 2-days (%)")
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.

Long time below EMA50


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 9 replies,
has 2 voices, and was last updated by JS
2 years, 5 months ago.

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