This commit is contained in:
Death916 2018-07-02 00:23:58 -07:00
parent 78a2842d6f
commit efb0b43edf

View file

@ -1,7 +1,8 @@
#! python3 #! python3
import json import json
from bittrex.bittrex import Bittrex from bittrex.bittrex import Bittrex, API_V2_0
from bittrex import Bittrex as trex1
import history as hist import history as hist
amount = 0 amount = 0
@ -13,22 +14,23 @@ with open('D:/code/emailtrade/keys.json') as k:
api_key = keys['api_key'] api_key = keys['api_key']
priv_key = keys['priv_key'] priv_key = keys['priv_key']
ticker = 'BTC-ETH' ticker = 'BTC-ETH'
trex = Bittrex(api_key, priv_key) trex = Bittrex(api_key, priv_key, api_version=API_V2_0)
def marketcheck(ticker): def marketcheck(ticker):
markets = trex.get_ticker(ticker) markets = trex.get_latest_candle(ticker, 'fiveMin')
price = markets['result']['Ask'] #price = markets['result']['Ask']
#print(markets['result']) print(markets)
return price return price
def open_trade(amount): def open_trade(amount):
global buyprice global buyprice
buyprice = marketcheck(ticker) buyprice = marketcheck(ticker)
trex.buy_limit(ticker, amount, rate = None) trex.buy_limit(ticker, amount, rate = buyprice)
print('buying', amount, 'of', ticker) print('buying', amount, 'of', ticker)
hist.tradehist('bought ' + amount + ' of ' + ticker + ' at ' + str(buyprice)) hist.tradehist('bought ' + amount + ' of ' + ticker + ' at ' + str(buyprice))
print(buyprice)
def close_trade(amount): def close_trade(amount):
global sellprice global sellprice
@ -43,6 +45,6 @@ def open_orders():
open_trade('1') #open_trade('.00051')
close_trade('1') #close_trade('1')
marketcheck(ticker)