-
Notifications
You must be signed in to change notification settings - Fork 0
/
balancing_capacity.go
399 lines (374 loc) · 13.7 KB
/
balancing_capacity.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
package gorte
import (
"net/http"
"time"
"github.com/dhia-gharsallaoui/gorte/utils"
)
type AcceptedOffersResp struct {
AcceptedOffers []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Type string `json:"type"`
Values []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Direction string `json:"direction"`
Value int `json:"value"`
UpdatedDate time.Time `json:"updated_date"`
} `json:"values"`
} `json:"accepted_offers"`
}
func (s *market) GetAcceptedOffers(opt utils.Period) (*AcceptedOffersResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "/open_api/balancing_capacity/v4/accepted_offers", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *AcceptedOffersResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type ProcuredReservesResp struct {
ProcuredReserves []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Type string `json:"type"`
Values []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Direction string `json:"direction"`
Value int `json:"value"`
Price float64 `json:"price"`
UpdatedDate time.Time `json:"updated_date"`
} `json:"values"`
} `json:"procured_reserves"`
}
func (s *market) GetProcuredReservesResp(opt utils.Period) (*ProcuredReservesResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "/open_api/balancing_capacity/v4/procured_reserves", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *ProcuredReservesResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type PeakDailyMarginsResp struct {
PeakDailyMargins []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Values []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
UpdatedDate time.Time `json:"updated_date"`
MorningPeakPeriod struct {
DurationBeforeMarginPeriod string `json:"DURATION_BEFORE_MARGIN_PERIOD"`
BeginMarginPeriod string `json:"BEGIN_MARGIN_PERIOD"`
EndMarginPeriod string `json:"END_MARGIN_PERIOD"`
RequiredMargin string `json:"REQUIRED_MARGIN"`
MaOffers string `json:"MA_OFFERS"`
CompOffers string `json:"COMP_OFFERS"`
RESCUE string `json:"RESCUE "`
IMBALANCE string `json:"IMBALANCE "`
SimulatedMaOffers string `json:"SIMULATED_MA_OFFERS"`
SimulatedCompOffers string `json:"SIMULATED_COMP_OFFERS"`
SimulatedRescue string `json:"SIMULATED_RESCUE"`
SIMULATEDREQUIREDMARGIN string `json:"SIMULATED_REQUIRED_MARGIN "`
} `json:"morning_peak_period"`
EveningPeakPeriod struct {
DURATIONBEFOREMARGINPERIOD string `json:"DURATION_BEFORE_MARGIN_PERIOD "`
BEGINMARGINPERIOD string `json:"BEGIN_MARGIN_PERIOD "`
ENDMARGINPERIOD string `json:"END_MARGIN_PERIOD "`
RequiredMargin string `json:"REQUIRED_MARGIN"`
MaOffers string `json:"MA_OFFERS"`
CompOffers string `json:"COMP_OFFERS"`
Rescue string `json:"RESCUE"`
Imbalance string `json:"IMBALANCE"`
SimulatedMaOffers string `json:"SIMULATED_MA_OFFERS"`
SimulatedCompOffers string `json:"SIMULATED_COMP_OFFERS"`
SimulatedRescue string `json:"SIMULATED_RESCUE"`
SIMULATEDREQUIREDMARGIN string `json:"SIMULATED_REQUIRED_MARGIN "`
} `json:"evening_peak_period"`
} `json:"values"`
} `json:"peak_daily_margins"`
}
func (s *market) GetPeakDailyMargins(opt utils.Period) (*PeakDailyMarginsResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/peak_daily_margins", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *PeakDailyMarginsResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type InsufficientsOffersResp struct {
InsufficientsOffers struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Values []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
UpdatedDate time.Time `json:"updated_date"`
Type string `json:"type"`
Nature string `json:"nature"`
Direction string `json:"direction"`
} `json:"values"`
} `json:"insufficients_offers"`
}
func (s *market) GetInsufficientsOffers(opt utils.Period) (*InsufficientsOffersResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/insufficients_offers", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *InsufficientsOffersResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type ImbalanceResp struct {
Imbalance []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Values []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Value int `json:"value"`
UpdatedDate time.Time `json:"updated_date"`
} `json:"values"`
} `json:"imbalance"`
}
func (s *market) GetImbalance(opt utils.Period) (*ImbalanceResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/imbalance", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *ImbalanceResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type AggregatedoffersEnergybidsResp struct {
AggregatedoffersEnergybids []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
OfferedRRstdVolume []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Values struct {
DownwardOfferedVolumeRRStdRestricted float64 `json:"DownwardOfferedVolumeRRStdRestricted"`
UpwardOfferedVolumeRRStd float64 `json:"UpwardOfferedVolumeRRStd"`
DownwardOfferedVolumeRRStd float64 `json:"DownwardOfferedVolumeRRStd"`
UpwardOfferedVolumeRRStdRestricted float64 `json:"UpwardOfferedVolumeRRStdRestricted"`
} `json:"values"`
} `json:"Offered_RRstd_Volume"`
OfferedVolume []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Values struct {
UpwardOfferedVolumemFRR int `json:"UpwardOfferedVolumemFRR"`
UpwardOfferedVolumeRRSpecific int `json:"UpwardOfferedVolumeRRSpecific"`
DownwardOfferedVolumeFCR int `json:"DownwardOfferedVolumeFCR"`
DownwardOfferedVolumeRRSpecific int `json:"DownwardOfferedVolumeRRSpecific"`
UpwardOfferedVolumeFCR int `json:"UpwardOfferedVolumeFCR"`
UpwardOfferedVolumeaFRR int `json:"UpwardOfferedVolumeaFRR"`
DownwardOfferedVolumeaFRR int `json:"DownwardOfferedVolumeaFRR"`
DownwardOfferedVolumemFRR int `json:"DownwardOfferedVolumemFRR"`
} `json:"values"`
} `json:"Offered_Volume"`
} `json:"aggregatedoffers_energybids"`
}
func (s *market) GetAggregatedoffersEnergybids(opt utils.Period) (*AggregatedoffersEnergybidsResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/aggregatedoffers_energybids", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *AggregatedoffersEnergybidsResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type IndividualoffersEnergybidsResp struct {
IndividualoffersEnergybids []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
TotalPagesNumber int `json:"total_pages_number"`
TotalItemsNumber int `json:"total_items_number"`
CurrentPage int `json:"current_page"`
Mesure []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Values []struct {
Quantity int `json:"Quantity"`
PriceAmount float64 `json:"PriceAmount"`
OfferType string `json:"OfferType"`
Dmo int `json:"DMO"`
ReserveType string `json:"ReserveType"`
RowDirection string `json:"RowDirection"`
Status string `json:"Status"`
} `json:"values"`
} `json:"mesure"`
} `json:"individualoffers_energybids"`
}
func (s *market) GetIndividualoffersEnergybids(opt utils.Period) (*IndividualoffersEnergybidsResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/individualoffers_energybids", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *IndividualoffersEnergybidsResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type GetMarginsDataOptions struct {
Date utils.Time `url:"date"`
Sens string `url:"sens"`
Type string `url:"type"`
}
type MarginsDataResp []struct {
StartDate string `json:"startDate"`
ComputationTime string `json:"computationTime"`
ProjectionTime string `json:"projectionTime"`
MarginsData []struct {
StudiedTime string `json:"studiedTime"`
ForecastedImbalanceRs int `json:"forecastedImbalanceRs"`
AvailableMarginsNormalUp int `json:"availableMarginsNormalUp"`
AvailableMarginsNormalDown int `json:"availableMarginsNormalDown"`
AvailableMarginsComplementaryUp int `json:"availableMarginsComplementaryUp"`
AvailableMarginsComplementaryDown int `json:"availableMarginsComplementaryDown"`
AvailableMarginsReliefUp int `json:"availableMarginsReliefUp"`
AvailableMarginsReliefDown int `json:"availableMarginsReliefDown"`
RequiredMarginsOperationnalUp int `json:"requiredMarginsOperationnalUp"`
RequiredMarginsOperationnalDown int `json:"requiredMarginsOperationnalDown"`
} `json:"marginsData"`
}
func (s *market) GetMarginsData(opt *GetMarginsDataOptions) (*MarginsDataResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/individualoffers_energybids", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *MarginsDataResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type DailyProcuredReservesResp struct {
DailyProcuredReserves []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Type string `json:"type"`
Values []interface{} `json:"values"`
} `json:"daily_procured_reserves"`
}
func (s *market) GetDailyProcuredReserves(opt utils.Period) (*DailyProcuredReservesResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/daily_procured_reserves", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *DailyProcuredReservesResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type NeedsResp struct {
Needs []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Product string `json:"product"`
FlowDirection string `json:"flow_direction"`
Volume int `json:"volume"`
} `json:"needs"`
}
func (s *market) GetNeeds(opt utils.Period) (*NeedsResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/tso_need_for_procured_reserves", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *NeedsResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}
type AggregatedoffersAFRREnergybidsResp struct {
AggregatedoffersAFRREnergybids []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Chronicles []struct {
StartDate time.Time `json:"start_date"`
EndDate time.Time `json:"end_date"`
Values struct {
DownwardOfferedVolumeaFRR int `json:"DownwardOfferedVolumeaFRR"`
UpwardOfferedVolumeaFRR int `json:"UpwardOfferedVolumeaFRR"`
DownwardSharedVolumeaFRR int `json:"DownwardSharedVolumeaFRR"`
UpwardSharedVolumeaFRR int `json:"UpwardSharedVolumeaFRR"`
DownwardAveragePriceaFRR float64 `json:"DownwardAveragePriceaFRR"`
UpwardAveragePriceaFRR float64 `json:"UpwardAveragePriceaFRR"`
} `json:"values"`
} `json:"chronicles"`
} `json:"aggregatedoffers_aFRR_energybids"`
}
func (s *market) GetAggregatedoffersAFRREnergybids(opt utils.Period) (*AggregatedoffersAFRREnergybidsResp, *http.Response, error) {
c := s.client
req, err := c.NewRequest(http.MethodGet, "open_api/balancing_capacity/v4/aggregatedoffers_afrr_energybids", opt)
if err != nil {
c.logger.Err(err.Error())
return nil, nil, err
}
var sig *AggregatedoffersAFRREnergybidsResp
resp, err := c.Do(req, &sig)
if err != nil {
c.logger.Err(err.Error())
return nil, resp, err
}
return sig, resp, err
}