MIT License Copyright (c) 2025 ccxt Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software wit
We recommend to visit our full documentation at https://docs.ccxt.com General Information Supported Exchanges Exchanges By Country How To Install Install Node.js Python PHP Web Browsers Docker Proxy CORS (Access-Control-Allow-Origin) How To Use User Manual Architecture Overview Instantiation Exch...
A JavaScript / Python / PHP library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs. Install·Usage·Manual·FAQ·Examples·Contributing·Social·CCXT Pro TheCCXTlibrary is used to connect and trade with cryptocurrency exchanges an...
Theccxtis a JavaScript/Python/PHP library for cryptocurrency trading and e-commerce. It supports many crypto exchange markets and merchant APIs. It provides quick access to market data for storage, analysis, visualization, indicator development, algorithmic trading, strategy backtesting and bot programmi...
CCXT(CryptoCurrency eXchange)交易库,一个JavaScript/Python/PHP加密货币交易库,支持超过100种山寨币与比特币交易所。...公共API包括以下内容:市场数据工具/交易对价格(汇率)订单交易历史行情用于制图的OHLC(V)其他公共端点对于使用私有API进行...
CCXT – CryptoCurrency eXchange Trading Library CCXT 是一个用于加密货币交易和电子商务的JavaScript/Python/PHP
Documentation The blog: Blog Read the full documentation at: Documentation List of built-in Indicators (122) Indicators Reference Python 2/3 Support Python2.7 Python3.2/3.3/3.4/3.5/3.6 It also works withpypyandpypy3(no plotting -matplotlibis not supported underpypy) ...
# Python import ccxt exchange = ccxt.okcoinusd () # default id okcoin1 = ccxt.okcoinusd ({ 'id': 'okcoin1' }) okcoin2 = ccxt.okcoinusd ({ 'id': 'okcoin2' }) id = 'btcchina' btcchina = eval ('ccxt.%s ()' % id) ...
Summary: A JavaScript / Python / PHP / C# / Go library for cryptocurrency trading and e-commerce Development: https://github.com/ccxt/ccxt Documentation: https://docs.ccxt.com/ The CCXT library is used to connect and trade with cryptocurrency exchanges and payment processing services worldwide...
# Python import ccxt print (ccxt.exchanges) // PHP include 'ccxt.php'; var_dump (\ccxt\Exchange::$exchanges); An exchange can be instantiated like shown in the examples below: // JavaScript const ccxt = require ('ccxt') let exchange = new ccxt.kraken () // ...