Back to Ccxt

exchange.verbose = True # uncomment for debugging purposes

wiki/examples/py/bybit-conditional-orders.md

4.5.52489 B
Original Source
python
# -*- coding: utf-8 -*-

import os
import sys
from pprint import pprint


import ccxt  # noqa: E402

exchange = ccxt.bybit({
   'apiKey': 'YOUR_API_KEY',
   'secret': 'YOUR_SECRET',
})

markets = exchange.load_markets()

# exchange.verbose = True  # uncomment for debugging purposes

params = {'stop_px': 9750, 'base_price':11152}
order = exchange.create_order('BTC/USD', 'market', 'buy', 911, None, params)

pprint(order)