Ionomy

class Ionomy.Ionomy(api_key: str, api_secret: str)

Bases: object

Base Ionomy API Wrapper

Parameters:
  • {str} -- Ionomy API key (api_key) –
  • {str} -- Ionomy API Secret (api_secret) –
balance(currency: str) → Dict[str, Union[str, float]]
balances() → List[Dict[str, Union[str, float]]]
cancel_order(orderId: str) → bool
currencies() → List[Dict[str, Union[str, bool, int, float]]]
deposit_address(currency: str) → Dict[str, str]
deposit_history(currency: str) → List[Dict[str, Union[str, float]]]
limit_buy(amount: Union[int, float], price: Union[int, float], market: str) → dict
limit_sell(amount: Union[int, float], price: Union[int, float], market: str) → dict
market_history(market: str) → List[Dict[str, Union[str, float]]]
market_summaries() → List[Dict[str, Union[str, int, float]]]
market_summary(market: str) → Dict[str, Union[str, int, float]]
markets() → List[Dict[str, Union[str, float, bool]]]
open_orders(market: str) → List[Dict[str, str]]
order_book(market: str) → Dict[str, List[Dict[str, float]]]
order_status(orderId: str) → Dict[str, Optional[str]]
withdraw(currency, amount, address)
withdrawal_history(currency: str) → List[Dict[str, Union[str, float]]]