New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.

60 day new high

would like to scan, 60 day new high 4 days ago,and each day after high = or lower high (pullback)

Best Answer

  • gordgord admin
    Answer ✓
    Here is an example of how to create this scan. It can be done fairly simply using the drop down menus to get you started on the right format. However it does require reading the scan training documentation to understand the coding format, give it a try and you'll pick it up quickly.

    http://stockcharts.com/school/doku.php?id=chart_school:scanning

    Note: all the lines with // in front are just comment statements, they are ignored by the scan engine, so you can just cut and paste the whole block of code into the advanced scan engine.
    [type = stock]
    and [country is US]
    and [ volume > 500000 ]
    // Insert price indicator high
    //and [High > 99.9]
    // then modify it to read
    and [high < 1 day ago high]
    //then add copy / paste & modify for the next for day two and three back
    and [1 day ago high < 2 day ago high]
    and [2 day ago high < 3 day ago high]
    // then insert the predefined scan for 52 week high
    // and [today's high > yesterday's daily max(253,high)]
    // then modify it for the previously starting 60 day high
    and [3 days ago high > 4 days ago daily max(60,high)]
Sign In or Register to comment.