Screen Code required: within 3% of 52 week high and >10% gap up

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #106012 quote
    jsnc
    Participant
    New

    Hi,

    Can someone help with the two screens i’m trying to run:

    1)

    last price between $0.5 – $10

    average daily volume >200,000

    last price within 3% of the 52 week high

     

    2)

    last price between $0.5 – $10

    average daily volume >200,000

    open price gap up >10% from yesterdays high

     

    any help is appreciated, thank you!

    #106223 quote
    Nicolas
    Keymaster
    Master

    These 2 screeners could be coded as below:

    1/ near 52 weeks high, less than 3%

    timeframe(daily)
    //last price between $0.5 – $10
    price = close>)0.5 and close<=10
    //average daily volume >200,000
    vol = average[20](volume)>200000
    
    timeframe(weekly)
    //last price within 3% of the 52 week high
    hh = highest[52](high)
    c1 = close/hh>=0.97
    
    screener[c1 and price and vol] (close/hh)

    2/ open gap of 10%

    timeframe(daily)
    //last price between $0.5 – $10
    price = close>)0.5 and close<=10
    //average daily volume >200,000
    vol = average[20](volume)>200000
    gap = dopen(0)/dhigh(1)>=1.1
    
    screener[gap and price and vol] (dopen(0)/dhigh(1))

    (not tested)

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

Screen Code required: within 3% of 52 week high and >10% gap up


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
jsnc @jsnc Participant
Summary

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

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