39 lines
1.0 KiB
Python
Executable File
39 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
"""This script generate json data from bittrex"""
|
|
import sys
|
|
import json
|
|
|
|
from freqtrade import exchange
|
|
from freqtrade.exchange import Bittrex
|
|
from freqtrade import misc
|
|
|
|
parser = misc.common_args_parser('download utility')
|
|
parser.add_argument(
|
|
'-p', '--pair',
|
|
help='JSON file containing pairs to download',
|
|
dest='pair',
|
|
default=None
|
|
)
|
|
args = parser.parse_args(sys.argv[1:])
|
|
|
|
TICKER_INTERVALS = [1, 5] # ticker interval in minutes (currently implemented: 1 and 5)
|
|
PAIRS = []
|
|
|
|
if args.pair:
|
|
with open(args.pair) as file:
|
|
PAIRS = json.load(file)
|
|
PAIRS = list(set(PAIRS))
|
|
|
|
print('About to download pairs:', PAIRS)
|
|
|
|
# Init Bittrex exchange
|
|
exchange._API = Bittrex({'key': '', 'secret': ''})
|
|
|
|
for pair in PAIRS:
|
|
for tick_interval in TICKER_INTERVALS:
|
|
print('downloading pair %s, interval %s' % (pair, tick_interval))
|
|
data = exchange.get_ticker_history(pair, tick_interval)
|
|
filename = '{}-{}.json'.format(pair, tick_interval)
|
|
misc.file_dump_json(filename, data)
|