ExchangeUniverse#
tradingstrategy.exchange.ExchangeUniverse Python class in Trading Strategy framework.
- class ExchangeUniverse[source]#
Bases:
object
Exchange manager.
Contains look up for exchanges by their internal primary key ids.
Methods
__init__
(exchanges)from_collection
(exchanges)Create exchange universe from a collection of exchanges.
from_dict
(kvs, *[, infer_missing])from_json
(s, *[, parse_float, parse_int, ...])get_by_chain_and_factory
(chain_id, ...)Get the exchange implementation on a specific chain.
get_by_chain_and_name
(chain_id, name)Get the exchange implementation on a specific chain.
get_by_chain_and_slug
(chain_id, slug)Get the exchange implementation on a specific chain.
get_by_id
(id)get_exchange_count
()Get the one and the only exchange in this universe.
Get top exchanges sorted by their 30d volume.
schema
(*[, infer_missing, only, exclude, ...])to_dict
([encode_json])to_json
(*[, skipkeys, ensure_ascii, ...])Attributes
Exchange id -> Exchange data mapping
- static from_collection(exchanges)[source]#
Create exchange universe from a collection of exchanges.
- Parameters:
exchanges (Collection[Exchange]) –
- Return type:
- get_top_exchanges_by_30d_volume()[source]#
Get top exchanges sorted by their 30d volume.
Note that we consider volume only for supported quote tokens. See
tradingstrategy.exchange.Exchange
for more details.
- get_by_chain_and_factory(chain_id, factory_address)[source]#
Get the exchange implementation on a specific chain.
- get_single()[source]#
Get the one and the only exchange in this universe.
- Returns:
The exchange
- Raises:
AssertionError – in the case the universe does not contain a single exchange
- Return type: