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

Inside Day

[type = stock] AND [Daily SMA(20,Daily Volume) > 40000]
and [todays Range yesterday's low]
and [ATR(14) > 1.5]
# I am not getting the right scan. My goal is to have today's range only 30% of yesterday's Range
# Help

Comments

  • Options
    You probably don't want to make it exactly equal to 30%. There wouldn't be many hits. You could use less than 30%, or a range - say between 25 and 30%


    So:

    and [ range < 1 day ago range*.31]

    alternatively

    and [range < 1 day ago range *.31]
    and [range > 1 day ago range *.25]
Sign In or Register to comment.