Module exchange

Module exchange 

Source
👎Deprecated since 0.2.0: Use ccxt_core::Exchange and ccxt_core::ExchangeCapabilities directly instead.
Expand description

Exchange trait module (DEPRECATED)

This module is deprecated. Use ccxt_core::Exchange and ccxt_core::ExchangeCapabilities directly instead. Exchange trait definition (DEPRECATED)

This module is deprecated. Please use ccxt_core::Exchange and ccxt_core::ExchangeCapabilities instead.

§Migration Guide

Replace:

ⓘ
use ccxt_exchanges::exchange::{Exchange, ExchangeCapabilities};

With:

ⓘ
use ccxt_core::{Exchange, ExchangeCapabilities};

The new unified Exchange trait in ccxt_core provides:

  • A single, canonical trait definition
  • Object-safe design for dyn Exchange usage
  • Comprehensive ExchangeCapabilities with all features
  • Better documentation and examples

Structs§

ExchangeCapabilities
Exchange capabilities configuration

Traits§

Exchange
Core Exchange trait - the unified interface for all exchanges

Type Aliases§

ArcExchange
Type alias for an Arc-wrapped Exchange trait object
BoxedExchange
Type alias for a boxed Exchange trait object