Bases: BaseModel
This class MarketInfo defines attributes for market information including symbol, prices,
funding rates, time, open interest, and 24-hour trading data. It is used when fetching from the
orderly API
Attributes
symbol : PerpetualAssetType
This is the asset for the market info
Source code in packages/emp_orderly_types/src/emp_orderly_types/market.py
| class MarketInfo(BaseModel):
"""This class `MarketInfo` defines attributes for market information including symbol, prices,
funding rates, time, open interest, and 24-hour trading data. It is used when fetching from the
orderly API
Attributes
----------
symbol : [PerpetualAssetType](assets.md)
This is the asset for the market info
"""
symbol: PerpetualAssetType
index_price: Decimal
mark_price: Decimal
sum_unitary_funding: Decimal
est_funding_rate: Decimal
last_funding_rate: Decimal
next_funding_time: datetime
open_interest: Decimal
last_24h_open: Decimal = Field(alias="24h_open")
last_24h_close: Decimal = Field(alias="24h_close")
last_24h_high: Decimal = Field(alias="24h_high")
last_24h_low: Decimal = Field(alias="24h_low")
last_24h_volume: Decimal = Field(alias="24h_volume")
last_24h_amount: Decimal = Field(alias="24h_amount")
|