Registered User Joined: 2/18/2011 Posts: 4
|
I want to sort the SP 500, Nasdaq 100, DJIA, etc. by price percent change for 3-days, one-week, two-weeks, etc. I think I was able to do this using Price Percentage Change under the older TC 2000 many years ago. I am a new subscriber to the current program.
|
Administration
Joined: 9/30/2004 Posts: 9,187
|
If you create custom formulas for each you can add them to your watchlist as columns and be able to see the results for any watchlist you select.
Click the Indicators button, then click New Indicator Formula.
For a 3-day percent change use:
(C-C3)/C3*100
For 1 calendar week percent change use:
(C-C1)/C1*100
...and set the Time Frame on the formula to Weekly.
If you want a rolling 5-day change then use
(C-C5)/C5*100 and leave the time frame set to Daily.
Same with the two week change. If you want calendar weeks use
(C-C2)/C2*100, time frame Weekly.
If you want a rolling 10-day change then use
(C-C10)/C10*100, time frame Daily.
|