Thinkorswim - Price Performace

Discussion in 'Trading Software' started by Sean35, Mar 2, 2018.

  1. Sean35

    Sean35

    So I'm trying to run a scan that will show all stocks that have increased by at least 4% over the last year year by using the following:

    Price_Change Open is at least 4% greater than 252 bars ago day

    However it doesn't seem to be working. It's seems to be only showing net change for today as opposed to the last year and it's showing negative net change as well.
     
  2. aldrums

    aldrums

    Comparing the closing price of today to the closing price of 252 days ago.
     
  3. Sean35

    Sean35

    Right. That's what I wanted to do. But you have to create a custom script to do that. I just
    confirmed with TDA.
     
  4. aldrums

    aldrums

    This should be a simple script. You can’t do it?
    I meant to say “Compare” in the earlier post. The Open price change will always be from the previous close.
     
  5. niko79542

    niko79542

    custom script:

    PercentChg("length" = 252) is greater than 4
     
  6. Sean35

    Sean35

    I just started using TOS so I'm still learning it. Thanks niko79542