mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Merge pull request #70 from dertione/patch-2
Download automatically altcoin datas
This commit is contained in:
commit
aeef9bac33
16
freqtrade/tests/testdata/download_backtest_data.py
vendored
Normal file
16
freqtrade/tests/testdata/download_backtest_data.py
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
"""This script generate json data from bittrex"""
|
||||
|
||||
from urllib.request import urlopen
|
||||
|
||||
CURRENCIES = ["ok", "neo", "dash", "etc", "eth", "snt"]
|
||||
|
||||
for cur in CURRENCIES:
|
||||
url1 = 'https://bittrex.com/Api/v2.0/pub/market/GetTicks?marketName=BTC-'
|
||||
url = url1+cur+'&tickInterval=fiveMin'
|
||||
x = urlopen(url)
|
||||
json_data = x.read()
|
||||
json_str = str(json_data, 'utf-8')
|
||||
with open('btc-'+cur+'.json', 'w') as file:
|
||||
file.write(json_str)
|
Loading…
Reference in New Issue
Block a user