Prediction of stock options trend based on historical data.
Stocky reads provided input and parses it searching historical data. It supports either files accessible locally or downloadable from internet.
$ ./bin/stocky path/to/historical/data.txt
$ ./bin/stocky http://url.to/historical.csv?data=1
- Data provided as an input must be in
CSVformat, - Newer data should be at the bottom of the file,
- First row isnt relevant (header),
- Trends about stock value are build from data available in 5th column (price of option at the end of the day),
Stocky provides simple output idicating probability of price going up/down. Running this on real stock market data showhs that all types of trends are equally probable:
down -> down ~ 0.25
down -> up ~ 0.25
up -> down ~ 0.25
up -> up ~ 0.25