|
|
Browse by Tags
All Tags » Query » Timeseries (RSS)
-
Your thoughts about the linked list sound good.
Just a spike:
class Serie{
Stock _stock;
Serie _previous;
Serie _next;
long _date;
double _openPrice;
double _closePrice;
double _highPrice;
double _lowPrice;
int _volume;
}
class Stock{
String ...
|
|
|