Rest Client for Delta Exchange
Project description
python-rest-client
Get started
-
Create an account on https://testnet.delta.exchange/signup
-
Install the package:
pip install delta-rest-client
- Follow the below snippet to trade on testnet:
from delta_rest_client import DeltaRestClient, order_convert_format
delta_client = DeltaRestClient(
base_url='https://testnet-api.delta.exchange',
username='',
password=''
)
product_id = 2
delta_client.get_product(product_id)
order = order_convert_format(7078.5, 10, "buy", product_id)
delta_client.create_order(order) # will create order on testnet
order1 = order_convert_format(7078.5, 10, "buy", product_id)
order2 = order_convert_format(7078.5, 10, "sell", product_id)
orders = [order1, order2]
delta_client.batch_create(product_id, orders)
delta_client.get_orders()
delta_client.get_L2_orders(product_id)
delta_client.get_ticker(product_id)
delta_client.get_wallet()
- Verify your orders on https://testnet.delta.exchange
Same steps can used for production trading.
- Production url is https://trade.delta.exchange/
- Production base_url is https://api.delta.exchange
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for delta_rest_client-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 756502c65975d2e406a5fb80d9c71043d6373947633e4a79a4b264cc6cb0e08b |
|
MD5 | 738940910c0fb62d00dbfef78e6c4b9e |
|
BLAKE2b-256 | 0fca71a54696a564a781f737bd5edd2888c0d1b0466b191d3602264d1ba94fe7 |