Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 2.17 KB

MarketInfo.md

File metadata and controls

40 lines (31 loc) · 2.17 KB

MarketInfo

MarketInfo current market information

Properties

Name Type Description Notes
base_currency str Base currency code [optional]
counter_currency str Counter currency code [optional]
fee_scale int Fee decimal places [optional]
market_id str Unique identifier for the market [optional]
max_price str Maximum order price [optional]
max_volume str Maximum order volume [optional]
min_price str Minimum order price [optional]
min_volume str Minimum order volume [optional]
price_scale int Price decimal places [optional]
trading_status str Current market trading status:<br> <code>POST_ONLY</code> Trading is indefinitely suspended. This state is commonly used when new markets are being launched to give traders enough time to setup their orders before trading begins. When in this status, orders can only be posted as post-only.<br> <code>ACTIVE</code> Trading is fully enabled.<br> <code>SUSPENDED</code> Trading has been temporarily suspended due to very high volatility. When in this status, orders can only be posted as post-only.<br> <code>Unknown</code> Trading status is unknown. This could indicate a temporary error on the market and should resolve shortly. [optional]
volume_scale int Volume decimal places [optional]

Example

from luno_openapi.models.market_info import MarketInfo

# TODO update the JSON string below
json = "{}"
# create an instance of MarketInfo from a JSON string
market_info_instance = MarketInfo.from_json(json)
# print the JSON string representation of the object
print(MarketInfo.to_json())

# convert the object into a dict
market_info_dict = market_info_instance.to_dict()
# create an instance of MarketInfo from a dict
market_info_from_dict = MarketInfo.from_dict(market_info_dict)

[Back to Model list] [Back to API list] [Back to README]