I need to name this structure:
struct NameNeeded
{
DateTime timestamp;
float value;
}
I will have arrays of this struct (a time-series).
I'd like a short and suggestive name. The data is financial (and Tick
is not a good name).
The best one I can think of is DataPoint
, but I feel that a better one exists :)
How would you name it?