Questions tagged [ccxt]

The CCXT library is used to connect & trade with cryptocurrency / altcoin exchanges & payment processing services worldwide. It provides quick access to market data for storage, analysis, visualization, indicator development, algorithmic trading, strategy backtesting, bot programming, webshop integration and related software engineering. Use with topics related to the CCXT library which unifies a vast amount of crypto exchange APIs into one.

The CCXT library is used to connect and trade with cryptocurrency / altcoin exchanges and payment processing services worldwide. It provides quick access to market data for storage, analysis, visualization, indicator development, algorithmic trading, strategy backtesting, bot programming, webshop integration and related software engineering.

It is intended to be used by coders, developers, technically-skilled traders, data-scientists and financial analysts for building trading algorithms on top of it.

217 questions
-2
votes
1 answer

How to restart a script from top after a "List assignment index out of range" error. loops for 100+ times and no problems, than stops on this error

it goes true the list and every time deletes on from the list and last one it gets the list back and starts all over again. I am just an amateur that try to run my trading bot. it's running for few hours and looping already for over a 1000 times…
-2
votes
1 answer

Binance - Convert Stablecoin to Stablecoin (e.g. from USDT to BUSD) using API (CCXT, or Binance)

I can not find support for converting USDT to BUSD or vise versa in any python package (CCXT, python-binance...).
-2
votes
1 answer

Ccxt binance fetchOHLCV doesn't return last data

I am using ccxt library for binance. To calculate the sar indicator, I am using fetchOHLCV to get last last historical data but the problem is that some times data are not reflecting the last binance data. We observe some delays Can anyone help me?
-2
votes
1 answer

Why do I get this error when I import CCXT and flask together? [TypeError: catching classes that do not inherit from BaseException is not allowed]

Why do I get error when I import CCXT and flask together? import ccxt from flask import Flask exchange = ccxt.coinbase() markets = exchange.load_markets() for market in markets: print(market) OUTPUT: Exception…
jguy
  • 161
  • 1
  • 11
-2
votes
2 answers

Constant errors when installing ccxt module in python

New to python but not to coding and just getting to grips with installing modules. Seem to get pretty far when installing ccxt with py -m pip install ccxt except it keeps throwing an error: ERROR: Command errored out with exit status 1: command:…
Sam.D
  • 1
  • 1
  • 1
-3
votes
1 answer

get list of all contract on bybit

i want to fetch all future contract on bybit so i am using ccxt i use exchange.loadmarkets() which give data data = {'BTC/USDT': {'id': 'BTCUSDT', 'symbol': 'BTC/USDT'}, 'ETH/USDT': {'id': 'ETHUSDT', 'symbol': 'ETH/USDT'}, 'XRP/USDT': {'id':…
SARVAGYA
  • 3
  • 3
-5
votes
1 answer

Not able to place a hedge order on binance using ccxt

I am coding with python and ccxt library. I am trying to make a bot for binance futures. My bot is supposed to run on Hedge mode, everything seemed to be working great until i changed my preference to Hedge mode from one-way mode. I searched and…
1 2 3
14
15