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.
Options

20 Day Low

want to run simple scan-
todays low is a new 20 day low
previous 20 day low was a min of 5 days ago
todays close is greater than that low (set a min of 5 days ago)

Answers

  • Options
    markdmarkd mod
    edited May 2015
    Hope I understood correctly - try this:

    // today's low is the lowest in 20 days

    and [low = min(20, low)]

    // within the 5 day period ending 5 days ago, the low is equal to
    // the low within the 20 day period ending 5 days ago

    and [5 days ago min(5, low) = 5 days ago min(20, low)]

    // today's close is above the minimum low in the 5 day period ending 5 days ago

    and [close > 5 days ago min(5, low)]

    It appears to catch some potential double bottoms.

    When you look at the results, see if the most successful examples have higher volume on today's close versus yesterday's, and better yet, higher volume above the 21 day average.
    Early buying is often strong buying. On the other hand, a Wyckoff rule for testing a low is that you actually want a low below and a close above a past low on weak volume.
Sign In or Register to comment.