mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
45 lines
1.0 KiB
Python
45 lines
1.0 KiB
Python
import os
|
|
import sys
|
|
sys.path.append('../../../')
|
|
|
|
from bfxapi import Client, Order, WS_HOST, REST_HOST
|
|
|
|
API_KEY=os.getenv("BFX_KEY")
|
|
API_SECRET=os.getenv("BFX_SECRET")
|
|
|
|
# Update order requires private hosts
|
|
bfx = Client(
|
|
API_KEY=API_KEY,
|
|
API_SECRET=API_SECRET,
|
|
logLevel='INFO',
|
|
ws_host=WS_HOST,
|
|
rest_host=REST_HOST
|
|
)
|
|
|
|
@bfx.ws.on('order_update')
|
|
def order_updated(order):
|
|
print ("Order updated.")
|
|
print (order)
|
|
|
|
@bfx.ws.once('order_update')
|
|
async def order_once_updated(order):
|
|
# update a second time using the object function
|
|
await order.update(price=80, amount=0.02, flags="2nd update")
|
|
|
|
@bfx.ws.once('order_confirmed')
|
|
async def trade_completed(order):
|
|
print ("Order confirmed.")
|
|
print (order)
|
|
await bfx.ws.update_order(order.id, price=100, amount=0.01)
|
|
|
|
@bfx.ws.on('error')
|
|
def log_error(msg):
|
|
print ("Error: {}".format(msg))
|
|
|
|
@bfx.ws.once('authenticated')
|
|
async def submit_order(auth_message):
|
|
# create an inital order a really low price so it stays open
|
|
await bfx.ws.submit_order('tBTCUSD', 10, 1, Order.Type.EXCHANGE_LIMIT)
|
|
|
|
bfx.ws.run()
|