Skip to main content

Rest Client for Delta Exchange

Project description

python-rest-client

Get started

  1. Create an account on https://testnet.delta.exchange/signup

  2. Install the package:

pip install delta-rest-client
  1. Follow the below snippet to trade on testnet:
from delta_rest_client import DeltaRestClient, create_order_format, cancel_order_format, round_by_tick_size

delta_client = DeltaRestClient(
  base_url='https://testnet-api.delta.exchange',
  api_key='',
  api_secret=''
)
product_id = 2
product = delta_client.get_product(product_id)
settling_asset = product['settling_asset']

order = create_order_format(7078.5, 10, "buy", product_id)
delta_client.create_order(order) # will create order on testnet

order1 = create_order_format(7078.5, 10, "buy", product_id)
order2 = create_order_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(settling_asset)
  1. Verify your orders on https://testnet.delta.exchange

Same steps can used for production trading.

  1. Production base_url is https://api.delta.exchange
  2. Production trade terminal url is https://trade.delta.exchange/

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

delta_rest_client-0.1.0.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

delta_rest_client-0.1.0-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

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