├── .gitignore ├── LICENSE ├── README.md ├── bitcoin_price_prediction ├── __init__.py ├── bayesian_regression.py └── okcoin.py ├── examples └── millionaire.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/README.md -------------------------------------------------------------------------------- /bitcoin_price_prediction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitcoin_price_prediction/bayesian_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/bitcoin_price_prediction/bayesian_regression.py -------------------------------------------------------------------------------- /bitcoin_price_prediction/okcoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/bitcoin_price_prediction/okcoin.py -------------------------------------------------------------------------------- /examples/millionaire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/examples/millionaire.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stavros0/bitcoin-price-prediction/HEAD/setup.py --------------------------------------------------------------------------------