forked from BitMEX/sample-market-maker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbitbank.py
65 lines (57 loc) · 3.02 KB
/
bitbank.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from datetime import timedelta
import logging
import requests
# from utils.timehelper import timehelper
from market_maker.utils.timehelper import timehelper
logger = logging.getLogger('root')
def get_estimated_future_price(currency_pair='btc_eth'):
request = requests.get('https://bitbank.nz/api/forecasts/' + currency_pair + '?secret=YOUR_API_KEY')
if request.status_code != 200:
logger.info("request error code: {}, {}".format(request.status_code, request.text))
featureset = request.json()['results']
return float(featureset['estimated_future_wavg_5'])
def get_buy_below_sell_above_percents(currency_pair='btc_eth'):
try:
request = requests.get('https://bitbank.nz/api/forecasts/' + currency_pair + '?secret=YOUR_API_KEY')
if request.status_code != 200:
logger.info("request error code: {}, {}".format(request.status_code, request.text))
featureset = request.json()['results']
except Exception as e:
logger.info(e)
return 1 - .03, 1.03
time_to_ignore_forecasts = timehelper.to_posix(timehelper.now() - timedelta(minutes=3))
if featureset['date'] < time_to_ignore_forecasts:
logger.info("BitBank.nz returning out of date forecasts for {}".format(currency_pair))
return 1 - .03, 1.03
# estimated_future_price = (float(featureset['estimated_future_wavg_5']) + float(featureset['estimated_future_wavg_30']) + float(featureset['estimated_future_wavg_60'])) / 3.
# buy_below_percent = estimated_future_price * .995
# sell_above_percent = estimated_future_price * 1.005
# #take % off
# buy_below_percent = min(.998, buy_below_percent)
# sell_above_percent = max(1.002, sell_above_percent)
buy_below_percent = 1 - .03
sell_above_percent = 1.03
# should buy?
if (float(featureset['estimated_future_wavg_5']) > 1 and
float(featureset['estimated_future_wavg_30']) > 1 and
float(featureset['estimated_future_wavg_60']) > 1 and
float(featureset['estimated_future_wavg_120']) > 1 and
float(featureset['power_imbalance']) > 1 and
float(featureset['wavg_distance_to_midpoint_percent30min']) > 0 and
float(featureset['wavg_distance_to_midpoint_percent5min']) > 0 and
float(featureset['wavg_distance_to_midpoint_percent60min']) > 0
):
buy_below_percent = 1
logger.info('buying! at ' + str(featureset['best_bid_price']))
if (float(featureset['estimated_future_wavg_5']) < 1 and
float(featureset['estimated_future_wavg_30']) < 1 and
float(featureset['estimated_future_wavg_60']) < 1 and
float(featureset['estimated_future_wavg_120']) < 1 and
float(featureset['power_imbalance']) < 1 and
float(featureset['wavg_distance_to_midpoint_percent30min']) < 0 and
float(featureset['wavg_distance_to_midpoint_percent5min']) < 0 and
float(featureset['wavg_distance_to_midpoint_percent60min']) < 0
):
sell_above_percent = 1
logger.info('selling! at ' + str(featureset['best_ask_price']))
return buy_below_percent, sell_above_percent