├── .gitignore ├── Cryptocurrency-Pricing-Analysis.html ├── Cryptocurrency-Pricing-Analysis.ipynb ├── Cryptocurrency-Pricing-Analysis.py ├── Dockerfile ├── README.md └── charts ├── html ├── aggregate-bitcoin-price.html ├── altcoin_prices_combined.html ├── combined-exchanges-pricing-clean.html ├── combined-exchanges-pricing.html ├── cryptocurrency-correlations-2016-v2.html ├── cryptocurrency-correlations-2016.html ├── cryptocurrency-correlations-2017-v2.html ├── cryptocurrency-correlations-2017.html └── kraken_price_plot.html └── png ├── aggregate-bitcoin-price.png ├── altcoin_prices_combined.png ├── combined-exchanges-pricing-clean.png ├── combined-exchanges-pricing.png ├── cryptocurrency-correlations-2016-v2.png ├── cryptocurrency-correlations-2016.png ├── cryptocurrency-correlations-2017-v2.png ├── cryptocurrency-correlations-2017.png └── kraken_price_plot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /Cryptocurrency-Pricing-Analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/Cryptocurrency-Pricing-Analysis.html -------------------------------------------------------------------------------- /Cryptocurrency-Pricing-Analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/Cryptocurrency-Pricing-Analysis.ipynb -------------------------------------------------------------------------------- /Cryptocurrency-Pricing-Analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/Cryptocurrency-Pricing-Analysis.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/README.md -------------------------------------------------------------------------------- /charts/html/aggregate-bitcoin-price.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/aggregate-bitcoin-price.html -------------------------------------------------------------------------------- /charts/html/altcoin_prices_combined.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/altcoin_prices_combined.html -------------------------------------------------------------------------------- /charts/html/combined-exchanges-pricing-clean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/combined-exchanges-pricing-clean.html -------------------------------------------------------------------------------- /charts/html/combined-exchanges-pricing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/combined-exchanges-pricing.html -------------------------------------------------------------------------------- /charts/html/cryptocurrency-correlations-2016-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/cryptocurrency-correlations-2016-v2.html -------------------------------------------------------------------------------- /charts/html/cryptocurrency-correlations-2016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/cryptocurrency-correlations-2016.html -------------------------------------------------------------------------------- /charts/html/cryptocurrency-correlations-2017-v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/cryptocurrency-correlations-2017-v2.html -------------------------------------------------------------------------------- /charts/html/cryptocurrency-correlations-2017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/cryptocurrency-correlations-2017.html -------------------------------------------------------------------------------- /charts/html/kraken_price_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/html/kraken_price_plot.html -------------------------------------------------------------------------------- /charts/png/aggregate-bitcoin-price.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/aggregate-bitcoin-price.png -------------------------------------------------------------------------------- /charts/png/altcoin_prices_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/altcoin_prices_combined.png -------------------------------------------------------------------------------- /charts/png/combined-exchanges-pricing-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/combined-exchanges-pricing-clean.png -------------------------------------------------------------------------------- /charts/png/combined-exchanges-pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/combined-exchanges-pricing.png -------------------------------------------------------------------------------- /charts/png/cryptocurrency-correlations-2016-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/cryptocurrency-correlations-2016-v2.png -------------------------------------------------------------------------------- /charts/png/cryptocurrency-correlations-2016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/cryptocurrency-correlations-2016.png -------------------------------------------------------------------------------- /charts/png/cryptocurrency-correlations-2017-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/cryptocurrency-correlations-2017-v2.png -------------------------------------------------------------------------------- /charts/png/cryptocurrency-correlations-2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/cryptocurrency-correlations-2017.png -------------------------------------------------------------------------------- /charts/png/kraken_price_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/triestpa/Cryptocurrency-Analysis-Python/HEAD/charts/png/kraken_price_plot.png --------------------------------------------------------------------------------