Skip to main content

An unofficial Python wrapper for the REST and WebSocket APIs of FTX US Derivatives, formerly known as LedgerX.

Project description

ftxusderivatives-python

An unofficial Python wrapper for the REST and WebSocket APIs of FTX US Derivatives, formerly known as LedgerX. I have no affiliation with FTX US Derivatives. Use this at your own risk.

Features

  • Implementation of all REST endpoints, detailed here
  • WebSocket implementation: live orderbook tops, account balances, open positions info, order fills, server heartbeat, reconnect logic
  • Simple handling of authentication
  • HTTP request error handling and retry logic
  • Logging support

Quick Start

Register an account with FTX US Derivatives. [optional]

Generate an API key and configure permissions. [optional]

Install ftxusderviatives-python: pip install ftxusderivatives-python

Here's some example code to get started with. Note that API calls that require authentication will not work if you do not enter your API key.

###############################
# REST API Example
###############################
from rest_lx.rest import LxClient

api_key = ""  # TODO: Put API key here

# Init REST client
client = LxClient(api_key=api_key)

# list active day-ahead-swap contracts
swaps = client.list_contracts({
    'active': True,
    'derivative_type': 'day_ahead_swap',
})

# grab BTC day-ahead-swap contract ID
data = swaps['data']
cbtc_swap = filter(lambda data: data['underlying_asset'] == 'CBTC', data)
contract_id = next(cbtc_swap)['id']
print(f"BTC swap contract_id: {contract_id}")

# retrieve your position for BTC day-ahead-swap contract (requires authentication)
position = client.retrieve_contract_position(contract_id)
print(f"BTC swap position: {position}")

# place bid for BTC next-day swap
lx_buy = {
    'order_type': 'limit',
    'contract_id': contract_id,
    'is_ask': False,
    'swap_purpose': 'undisclosed',
    'size': 1,
    'price': 100,  # $1 (100 cents)
    'volatile': True
}
order = client.create_order(**lx_buy)

# cancel placed order
message_id = order['data']['mid']  # order ID
client.cancel_single_order(message_id=message_id, contract_id=contract_id)

###############################
# WebSocket Example
###############################
from websocket_lx.client import LxWebsocketClient
import time

# Init WebSocket client
ws = LxWebsocketClient(api_key=api_key)

# Subscribe to orderbook-top feed for BTC day-ahead-swap contract
ws.subscribe(contract_id=contract_id)
ws.connect()

# Grab orderbook-top for BTC day-ahead-swap once a second
while True:
    top = ws.get_book_top(contract_id=contract_id)
    print(top)
    time.sleep(1)

Todo

Contributing

Contributions, fixes, recommendations, and all other feedback is welcome. If you are fixing a bug, please open an issue first with all relevant details, and mention the issue number in the pull request.

Contact

I can be reached on discord at Nenye#5335, or through email at nenye@ndili.net. Otherwise, feel free to open a PR or Issue here.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ftxusderivatives-python-0.1.2.tar.gz (11.0 kB view details)

Uploaded Source

Built Distribution

ftxusderivatives_python-0.1.2-py3-none-any.whl (10.7 kB view details)

Uploaded Python 3

File details

Details for the file ftxusderivatives-python-0.1.2.tar.gz.

File metadata

  • Download URL: ftxusderivatives-python-0.1.2.tar.gz
  • Upload date:
  • Size: 11.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.13 CPython/3.10.1 Windows/10

File hashes

Hashes for ftxusderivatives-python-0.1.2.tar.gz
Algorithm Hash digest
SHA256 f6469c2c4752fe9dc6026da4ea1957db4439d5f3ee5332383dd514ba35da6a26
MD5 50f25994f387bee86c0430db2f7dcca0
BLAKE2b-256 9345fd8fce261e5aafe170ff72add3b035a36bce91bf62a5131ac53075bd5be4

See more details on using hashes here.

File details

Details for the file ftxusderivatives_python-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for ftxusderivatives_python-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 293b5c9fd7b1443145d65435686baf1c4423d94a960ac76cf355eabfa7f44cbb
MD5 c472422e8eae04dd1d6fb677b6740acd
BLAKE2b-256 a756dabd66c5455973ad7c720e0839e7c716cd681d8360753ce111816253f7b6

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page