OMI¶
This page provides detailed information about Other Market Information (OMI) parameter classes.
entsoe.OMI ¶
OtherMarketInformation ¶
OtherMarketInformation(
control_area_domain: str,
period_start: Optional[int] = None,
period_end: Optional[int] = None,
doc_status: Optional[str] = None,
period_start_update: Optional[int] = None,
period_end_update: Optional[int] = None,
m_rid: Optional[str] = None,
offset: int = 0,
)
Bases: OMI
Parameters for Other Market Information.
Data view: https://transparency.entsoe.eu/omi-domain/r2/otherMarketInformation/show
Fixed parameters:
- documentType: B47 (Other market information)
Notes: - Returns other market information data - Can be filtered by document status (A05=Active, A09=Cancelled, A13=Withdrawn) - Supports update-based queries with PeriodStartUpdate/PeriodEndUpdate
Initialize other market information parameters.
Parameters:
-
control_area_domain
(str
) –EIC code of Scheduling Area
-
period_start
(Optional[int]
, default:None
) –Start period (YYYYMMDDHHMM format, optional if period_start_update and period_end_update are defined)
-
period_end
(Optional[int]
, default:None
) –End period (YYYYMMDDHHMM format, optional if period_start_update and period_end_update are defined)
-
doc_status
(Optional[str]
, default:None
) –Document status (A05=Active, A09=Cancelled, A13=Withdrawn)
-
period_start_update
(Optional[int]
, default:None
) –Start of update period (YYYYMMDDHHMM format, mandatory if period_start and period_end not defined)
-
period_end_update
(Optional[int]
, default:None
) –End of update period (YYYYMMDDHHMM format, mandatory if period_start and period_end not defined)
-
m_rid
(Optional[str]
, default:None
) –Message ID for specific information versions
-
offset
(int
, default:0
) –Offset for pagination
Note
Either (period_start, period_end) or (period_start_update, period_end_update) must be provided. The parent OMI class validates this requirement.