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

scan for stocks up 10% in one month

can someone provide a scan for stocks that are up 10% min in a one month period ? Daily time frame . Thanks in advance

Best Answers

  • Options
    markdmarkd mod
    Answer ✓
    Here's one way:

    [group is sp500]
    and [close > 21 days ago close * 1.1]

    the "21 days ago" is a month in trading days
    the "1.1" is the close 21 days ago (the "1"), plus 10 per cent (the " .1")
  • Options
    gordgord admin
    Answer ✓
    In addition to Markd's code you could also use the percent change or rate of change functions. Again 21 tradings days is about a month, (varies with holidays).

    PctChange(nPeriods,exp)
    Returns the percentage change in value over nPeriods for the expression.
    nPeriods - Number of periods
    exp - expression
    [PctChange (21,close) > 10]

    ROC(nPeriods, exp)
    The value of the Rate of Change (ROC) indicator.
    nPeriods: The number of periods used in the computation
    exp - expression
    [ROC(21,close) > 10]

Answers

  • Options
    markdmarkd mod
    edited March 2015
    In an age of power tools, I'm still using the hand saw... :wink:
  • Options
    Thanks all.Hey I am trying to intererpt the blueprints lol
Sign In or Register to comment.