10% above moving average

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #204510 quote
    marco7630
    Participant
    New
    I would like to have a screener that only shows the stocks that meet the following criteria:
    • The average daily volume of the last 7 tading days is at least one milion
    • The current price is at least 10% above or below the 50 day SMA
    • The current price needs to be above 5
    #204522 quote
    JS
    Participant
    Veteran

    Hi @marco7630

    Hereby the requested screener…

     
    xMA7Volume = Average[7](Volume) //7 days average volume
    xMA50Close = Average[50](Close) //50 days average close
    
    C1 = xMA7Volume > 1000000 //7 days average volume is higher than 1 million
    C2 = Close > 1.1 * xMA50Close or Close < 0.9 * xMA50Close //Close is higher then 1.1 * 50 days average close OR Close is lower then 0.9 * 50 days average close
    C3 = Close > 5 //Close is higher than 5
    
    Screener[C1 and C2 and C3](xMA7Volume as "7 days avg volume")
    
    Nicolas thanked this post
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.

10% above moving average


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
marco7630 @marco7630 Participant
Summary

This topic contains 1 reply,
has 2 voices, and was last updated by JS
3 years, 3 months ago.

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