Portfolio
Get optimal positions for portfolio
Based on the current demand forecast for a given portfolio, return the optimal set of positions given prices
on the specified market.
Returns suggested positions, along with appropriate market (day ahead or continuous, based upon the selected time
period)
GET
/
entities
/
portfolio
/
{geography_id}
/
optimal
Authorization
Path
Query
curl --request GET \
--url http://localhost:8001/entities/portfolio/{geography_id}/optimal
{
"delta_to_median": [
123
],
"demand": [
123
],
"market": [
"day_ahead"
],
"timestamps": [
"2023-11-07T05:31:56Z"
],
"value_of_delta_eur": [
123
]
}
Path Parameters
geography_id
enum<string>
requiredAn enumeration.
Available options:
DE
, UK
, NL
, FR
, SE
, DK
, IE
, NO
, IT
, FI
, BE
, ES
, AT
, BG
, HU
, HR
, CZ
, EE
, GR
, LV
, PT
, PL
Query Parameters
start_time
any
end_time
any
Response
200 - application/json
delta_to_median
number[]
requireddemand
number[]
requiredmarket
enum<string>[]
requiredAvailable options:
day_ahead
, continuous
timestamps
string[]
requiredTimestamps for demand (UTC)
value_of_delta_eur
number[]
requiredcurl --request GET \
--url http://localhost:8001/entities/portfolio/{geography_id}/optimal
{
"delta_to_median": [
123
],
"demand": [
123
],
"market": [
"day_ahead"
],
"timestamps": [
"2023-11-07T05:31:56Z"
],
"value_of_delta_eur": [
123
]
}