CCXT.SIMPLE 1.1.10

dotnet add package CCXT.SIMPLE --version 1.1.10
                    
NuGet\Install-Package CCXT.SIMPLE -Version 1.1.10
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CCXT.SIMPLE" Version="1.1.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CCXT.SIMPLE" Version="1.1.10" />
                    
Directory.Packages.props
<PackageReference Include="CCXT.SIMPLE" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CCXT.SIMPLE --version 1.1.10
                    
#r "nuget: CCXT.SIMPLE, 1.1.10"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CCXT.SIMPLE@1.1.10
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CCXT.SIMPLE&version=1.1.10
                    
Install as a Cake Addin
#tool nuget:?package=CCXT.SIMPLE&version=1.1.10
                    
Install as a Cake Tool

CCXT.Simple

NuGet .NET License Downloads

πŸš€ Modern .NET cryptocurrency trading library - Unified API access to 110 exchange adapters (8 FULL, 3 PARTIAL, 99 SKELETON) with a focus on simplicity and performance.

✨ Key Features

  • 🎯 Unified Interface - Same API across all exchanges
  • ⚑ High Performance - ValueTask<T> async patterns, HTTP client pooling
  • πŸ”’ Type Safe - Strong typing with comprehensive data models
  • 🌍 Global Coverage - 110 exchange adapters (8 fully validated, 3 in progress)
  • πŸ“Š Complete API - Market data, trading, account management, funding operations

πŸš€ Quick Start

Installation

dotnet add package CCXT.Simple

Basic Usage

using CCXT.Simple.Exchanges.Binance;

// Initialize exchange
var exchange = new Exchange("USD");
var binance = new XBinance(exchange, "api_key", "secret_key");

// Get market data
var btcPrice = await binance.GetPrice("BTCUSDT");
var orderbook = await binance.GetOrderbook("BTCUSDT", 10);

// Trading operations
var balances = await binance.GetBalance();
var order = await binance.PlaceOrder("BTCUSDT", SideType.Buy, "limit", 0.001m, 50000m);

🏒 Exchange Support

βœ… Fully Functional (8 exchanges)

OKX | Bitstamp | Coinbase | Coinone | Bithumb | Kraken | Binance | Upbit

πŸŒ“ Partial / In Progress (3)

Huobi | KuCoin | Korbit

🚧 Priority Development Queue

Bitfinex β€’ Gemini β€’ Poloniex β€’ Mexc β€’ Deribit β€’ Bitmex

πŸ“‹ Skeleton Ready (99 exchanges)

Remaining adapters are generated skeletons awaiting implementation.

πŸ“– View complete exchange list and status β†’

πŸ’‘ Architecture

Built on a multi-exchange adapter pattern with a unified IExchange interface:

public interface IExchange
{
    // Market Data
    ValueTask<Orderbook> GetOrderbook(string symbol, int limit = 5);
    ValueTask<decimal> GetPrice(string symbol);
    
    // Trading
    ValueTask<OrderInfo> PlaceOrder(string symbol, SideType side, string orderType, decimal amount, decimal? price = null);
    ValueTask<Dictionary<string, BalanceInfo>> GetBalance();
    
    // Funding
    ValueTask<DepositAddress> GetDepositAddress(string currency, string network = null);
    ValueTask<WithdrawalInfo> Withdraw(string currency, decimal amount, string address);
}

πŸ”§ Configuration

// Basic setup
var exchange = new Exchange("USD");  // or "KRW", "EUR", etc.
exchange.ApiCallDelaySeconds = 1;    // Rate limiting
exchange.Volume24hBase = 1000000;    // Volume thresholds

// With events
exchange.OnMessageEvent += (ex, msg, code) => Console.WriteLine($"[{ex}] {msg}");
exchange.OnUsdPriceEvent += price => Console.WriteLine($"BTC: ${price}");

πŸ“š Documentation & Examples

Running Examples

git clone https://github.com/ccxt-net/ccxt.simple.git
cd ccxt.simple
dotnet run --project samples/ccxt.sample.csproj

🀝 Contributing

We welcome contributions! Need a specific exchange implemented? Create an issue - exchanges with more community requests get priority.

Development Setup

git clone https://github.com/ccxt-net/ccxt.simple.git
cd ccxt.simple
dotnet build              # Build solution  
dotnet test               # Run 73 tests

πŸ“Š Project Status

  • Current Version: 1.1.10 (.NET 8.0 & 9.0 & 10.0)
  • Architecture: Thread-safe, event-driven, REST API focused
  • Test Coverage: 73 tests passing
  • Active Development: Monthly updates, community-driven priorities

πŸ‘₯ Team

Core Development Team

πŸ“ž Support & Contact

  • πŸ› Issues: GitHub Issues
  • πŸ“§ Email: help@odinsoft.co.kr

πŸ“„ License

MIT License - see LICENSE.txt for details.


Built with ❀️ by the ODINSOFT Team | ⭐ Star us on GitHub

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.10 107 8/22/2025
1.1.9 144 8/13/2025
1.1.8 120 8/9/2025
1.1.7 372 8/7/2025
1.1.5 206 9/18/2024
1.1.4 451 1/5/2023
1.0.2 394 11/25/2022
1.0.1 382 11/25/2022

v1.1.10 - Added: SHA256.HashDataCompat extension for .NET Standard 2.0/2.1 compatibility (static utility for hashing)
Added: ConvertExtensions.ToHexString for byte[] to hex string conversion across all target frameworks
Refactored: All usages of SHA256 hashing and hex string conversion to use new extension methods
Improved: Ensured compatibility and consistent behavior for cryptographic operations on all supported .NET versions
Maintenance: Minor code cleanup and namespace unification for extension methods
This update improves cross-framework compatibility and code maintainability for cryptographic operations.