Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.55 KB

Ticker.md

File metadata and controls

36 lines (27 loc) · 1.55 KB

Ticker

Ticker summarised instant market data

Properties

Name Type Description Notes
ask str The lowest ask price [optional]
bid str The highest bid price [optional]
last_trade str Last trade price [optional]
pair str [optional]
rolling_24_hour_volume str 24h rolling trade volume [optional]
status str Market current status <code>ACTIVE</code> when the market is trading normally <code>POSTONLY</code> when the market has been suspended and only post-only orders will be accepted <code>DISABLED</code> when the market is shutdown and no orders can be accepted <code>UNKNOWN</code> the market status could not be determined. This is a temporary state. [optional]
timestamp int Unix timestamp in milliseconds of the tick [optional]

Example

from luno_openapi.models.ticker import Ticker

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

# convert the object into a dict
ticker_dict = ticker_instance.to_dict()
# create an instance of Ticker from a dict
ticker_from_dict = Ticker.from_dict(ticker_dict)

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