mirror of
https://github.com/discountry/ritmex-bot.git
synced 2026-09-10 00:38:07 +00:00
commit
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
- [Create Orders Example](./examples/py/)
|
||||
|
||||
|
||||
```python
|
||||
import os
|
||||
import sys
|
||||
|
||||
# PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
||||
# https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
||||
|
||||
# AUTO-TRANSPILE #
|
||||
async def example():
|
||||
exchange = ccxt.binance({
|
||||
'apiKey': 'MY_API_KEY',
|
||||
'secret': 'MY_SECRET',
|
||||
})
|
||||
exchange.set_sandbox_mode(True)
|
||||
await exchange.load_markets()
|
||||
exchange.verbose = True # uncomment for debugging purposes if necessary
|
||||
orders = await exchange.create_orders([{
|
||||
'symbol': 'LTC/USDT:USDT',
|
||||
'type': 'limit',
|
||||
'side': 'buy',
|
||||
'amount': 10,
|
||||
'price': 55,
|
||||
}, {
|
||||
'symbol': 'ETH/USDT:USDT',
|
||||
'type': 'market',
|
||||
'side': 'buy',
|
||||
'amount': 0.5,
|
||||
}])
|
||||
print(orders)
|
||||
|
||||
await exchange.close()
|
||||
|
||||
|
||||
asyncio.run(example())
|
||||
|
||||
```
|
||||
Reference in New Issue
Block a user