Dear Gavin and Skip,
It's nice to see you folks work together here.
You guys are really intiutive, it's shocking.
First of all skip, there is no date that comes with the data.
The data is the same data everyday, it's just that the data is reranked. So, essentially it's like this:
Days are across the top, there is no pattern pattern persay, its just that trends tend to continue. My responsibility is to try and "catch" the records as they make their moves up the top of the list. The data is provided to me like this:
... 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1
... A | A | A | B | B | C | A | C | H
... B | B | C | A | A | B | B | H | A
... C | C | B | C | F | F | C | A | C
... D | E | E | F | E | A | H | I | G
... E | D | F | G | G | H | I | G | I
Now, here's what I'm doing. I'm tracking the index value of each symbol for each day (the use of question marks is just to try and keep the columns together), so I'm changing it to this:
... | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1
A ... | 1 | 1 | 1 | 2 | 2 | 4 | 1 | 3 | 2
B ... | 2 | 2 | 3 | 1 | 1 | 2 | 2 | ? | ?
C ... | 3 | 3 | 2 | ? | 1 | 3 | 2 | 1 | 3
D ... | 4 | 5 | ? | ? | ? | ? | ? | ? | ?
E ... | 5 | 4 | 4 | ? | 4 | ? | ? | ? | ?
F ... | 6 | ? | 5 | 4 | 3 | 3 | ? | ? | ?
G ... | 7 | ? | ? | 5 | 5 | ? | ? | 5 | 4
I ... | 8 | ? | ? | ? | ? | ? | 5 | 4 | 5
.
.
.
As I've mentioned there are about 8000 symbools. Each symbol can only exist once on any given day. My responsibility is to pioneer the tracking of the movements up the list (once I've figured it out, there will be times that I'll be looking for downward momentum).
My biggest problem, which really stood out once Gavin first started to help me is what do I want it to look like in the end. Well, Gavin, I have to admit that I'm making it up as I go. My first problem was incorporating the data into the SS. The thing is I don't know what meaningful changes are. Is it a moving average from one day to the next, or from one 5 day period to the next. I don't know, I have to determine the success in predicting future movement based on the results of calculations.
I have to admit that I'm really cheating here. This isn't something I (or anyone else that I know of) used to track manually and I've had the epiphany of coding it to save time. Frankly if I hadn't tinkered with code before, I would've never even embarked on this in the first place. People used to use calculators, I couldn't imagine - I do own one but I'm sure you get what I mean.
And you Skip, have really made me realize that I have no clue as to the full potential of the Excel resource. I've been reading through post and have heard of pivod tables but I have yet to look into them. My first job is incorporating the data. I've basically figured out how to do that now.
A further note to Skip is, maybe I don't have enough respect for the work vb programs do. I have to admit that relying on them to perform my redundant tasks has kept me from seeking inherent or more stable talents that are part of the software.
I sincerely want to thank you both for posing questions that help me think and better understand what I'm trying to accomplish. I am trying to learn how to fish

.
For now, my last question is, when I move the data, how do I keep the formulas referencing the original cells as opposed to following the data.
And please, if you have any further comments or questions that I should be asking my "self", please forward them.
Thanks,
Paolo