Near 52 week high

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #73613 quote
    Yas1311
    Participant
    New

    Hi guys

    I want to know if you create  a screener for the following in daily timeframe .

    Last 52 week high greater than one month Old
    Price less than 8 percent from 52 week high

    Second screener

    Price 15 percent or less away from 52 week high
    Last daily candle a hammer

    I would really appreciate it Thanks!

    #73621 quote
    Vonasi
    Moderator
    Master

    Moved to the ProScreener forum.

    Please try to post in the correct forum with future topics 🙂

    #73647 quote
    Nicolas
    Keymaster
    Master

    Here is the code for the first screener:  (Close is 8% away of less than the 52 weeks high which is the same since 4 weeks)

    timeframe(weekly)
    hh = highest[52](high)
    c1 = hh=hh[4]
    c2 = close/hh>=0.92
    
    screener[c1 and c2] (close/hh)

    and the second one: (15% away or less than the 52 weeks high and daily candle forming an hammer)

    timeframe(weekly)
    hh = highest[52](high)
    c1 = close/hh>=0.85
    
    timeframe(daily)
    c2 = (close>open and low=open and (high-close)>=3*(close-open)) or (close>open and high=close and (open-low)>=3*(close-open))
    
    screener[c1 and c2] (close/hh)
    #73682 quote
    Yas1311
    Participant
    New

    Thank you for your time!

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

Near 52 week high


ProScreener: Market Scanners & Detection

New Reply
Author
author-avatar
Yas1311 @yas1311 Participant
Summary

This topic contains 3 replies,
has 3 voices, and was last updated by Yas1311
7 years, 9 months ago.

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