ccxt Questions
2
From what I have seen CCXT does not provide functionality for creating an order of type:
"I want to spend 10 USDT to buy BTC"
Instead, the only thing you can do is to specify the amount...
Granary asked 5/5, 2021 at 16:38
3
I am trying to create a perpetual limit order using ccxt on okex exchange version 5.
The API is successfully placing orders(both limit and market) on spot exchange but not on perpetual exchange.
He...
2
I am testing a class object using mock which is ccxt.binance. This mocked object is passed as an argument to a function that I am testing. Initially it is working because I was able to test to up t...
Meeks asked 31/5, 2019 at 10:18
5
Solved
How can I place a market order in ccxt for binance futures?
Trading on binance futures with ccxt is already implemented
https://github.com/ccxt/ccxt/pull/5907
In this post they suggest to use th...
2
Solved
Is there any way I can use ccxt to extract the price of a crypto currency at a given time in the past?
Example: get price of BTC on binance at time 2018-01-24 11:20:01
2
I'm playing with Binance API to make my trading bot with Python 3.6. and CCXT library (here you find the docs ).
One very useful thing they have in their site is the capability to place orders for...
1
I'm trying to close a position on Binance Futures using ccxt ccxt-1.39.93, Python 3.
# fetch position
position = binance.fetch_balance()['info']['positions']
pos = [p for p in position if p['symbol...
1
i wrote a small script to download ohlcv data from binance or bybit with ccxt.
I want to get candle data from the testnet as well as the main net.
I looked at ccxt code and there are urls for both ...
1
Solved
I am trying to get 1minute open, high, low, close, volume values from bitmex using ccxt. everything seems to be fine however im not sure how to fix this error. I know that the index is 7 because th...
Medicable asked 18/2, 2019 at 20:28
1
Solved
I am working on a project that uses the ccxt async library which requires all resources used by a certain class to be released with an explicit call to the class's .close() coroutine. I want to exi...
Torrential asked 4/2, 2019 at 23:29
1
© 2022 - 2025 — McMap. All rights reserved.