
I wanted to share with you all how to begin building an open-source platform for analyzing cryptocurrency market data. If you aren't a fan of getting your trading advice from platforms derived from traditional markets and are curious about building your own tools for forecasting and investing, I hope you'll read further and comment.
All feedback is appreciated.
There are many APIs to choose from with more detailed options ... often with a price tag.
I chose this API for a few reasons:

https://www.virtualbox.org/wiki/Downloads
https://bitnami.com/redirect/to/151919/bitnami-elk-5.4.1-0-linux-debian-8-x86_64.ova
Change Adapter 1 to Host-Only
Enable Adapter 2 to NAT
For Improved Performance, Adjust RAM/Processors/Etc.
Login with Defaults
bitnami/bitnami
(Change password)
sudo rm -f /etc/ssh/sshd_not_to_be_run
sudo systemctl enable ssh
sudo systemctl start ssh
sudo apt-get upgrade -y python-dev libssl-dev git-dev
sudo python < <(curl -s https://bootstrap.pypa.io/get-pip.py)
sudo pip install elastic search
sudo ifconfig
eth0 Link encap:Ethernet HWaddr de:ad:be:ef:ca:fe
inet addr:192.168.100.101 Bcast:192.168.100.255 Mask:255.255.255.0

This script can be saved to to something like chistory.py:
#Imports
import sys
import datetime
import requests
import json
from elasticsearch import Elasticsearch
#Variables
server = 'localhost'
arg1 = sys.argv[1]
arg2 = sys.argv[2]
doctype = arg2.lower()
id = arg1
#Send data to ELK function
def sendtoelastic(data):
try:
es = Elasticsearch(server)
es.index(index=id, doc_type=doctype, body=data)
except Exception as e:
print 'Error sending to elasticsearch: {0}'.format(str(e))
pass
#Send settings to ELK function
def settingselastic(data):
try:
es = Elasticsearch(server)
es.indices.create(index=id, ignore=400, body=data)
except Exception as e:
print 'Error sending to elasticsearch: {0}'.format(str(e))
pass
#Build request, download and load JSON data
payload = {'coin': arg2, 'period': arg1}
r = requests.get('http://coinmarketcap.northpole.ro/history.json?', params=payload)
h = r.text
d = json.loads(h)['history']
#Send settings
settings = '''{"mappings": {''' + '"' + arg1 + '"' + ''': {"properties": {"timestamp": {"type": "date","format": "epoch_second"}}}}}'''
settingselastic(settings)
#Send data
for i in d.items():
for l in i:
if type(l) is dict:
sendtoelastic(json.dumps(l))
python chistory.py 2017 BTC
python chistory.py 2017 BTC;python chistory.py 2017 ETH;python chistory.py 2017 DOGE
python chistory.py 2016 BTC;python chistory.py 2016 ETH;python chistory.py 2016 DOGE
A current list of coins can be found here
If for any reason we aren't happy with the results, we can dump elastic like this:
curl -XDELETE 'http://localhost:9200/_all'

Here's a quick how-to visualize your data in Kibana with a few line graphs which may be of interest ...
Change.1h x Date
Change.24h x Date
Volume.EUR x Date
This is just a basic example of leveraging an API for analytics.
The basic mechanics ought be able to be applied to other APIs of interest.
If you'd like to see more API analytics, follow and up vote. I hope this helps someone!
If you made it this far ... Thanks!