-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for XBid
- Loading branch information
Showing
4 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
<param.email>[email protected]</param.email> | ||
<param.company>Ark Energy</param.company> | ||
<param.summary>This Library provides read access to the Artesian API</param.summary> | ||
<param.description>In v1.4.2 has been added: | ||
- Enum for GME Markets and Zones</param.description> | ||
<param.description>In v1.5.0 has been added: | ||
- XBID market and Public offer v2.0</param.description> | ||
<param.screenshot>${PROJECT_ROOT}\icon.png</param.screenshot> | ||
<param.version>1.4.2</param.version> | ||
<param.version>1.5.0</param.version> | ||
<param.output>${PROJECT_ROOT}\Artesian.SDK.mltbx</param.output> | ||
<param.products.name /> | ||
<param.products.id /> | ||
|
@@ -117,7 +117,7 @@ icon.png | |
</build-deliverables> | ||
<workflow /> | ||
<matlab> | ||
<root>C:\Program Files\MATLAB\R2022a</root> | ||
<root>C:\Program Files\MATLAB\R2023b</root> | ||
<toolboxes /> | ||
</matlab> | ||
<platform> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,8 @@ | |
MB5, | ||
MB6, | ||
MBh, | ||
MRR | ||
MRR, | ||
MIXBID | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
cfg = ArtesianServiceConfig("baseAddress", "apiKey"); | ||
cfg = ArtesianServiceConfig("baseaddr","apikey"); | ||
qs = GMEPublicOfferService(cfg); | ||
|
||
%AbsoluteRange - TimeZone - MultiIds | ||
test1 = qs.CreateGMEPublicOfferQuery() ... | ||
.ForDate("2020-04-01") ... | ||
.ForPurpose(Purpose.BID) ... | ||
.ForDate("2023-07-22") ... | ||
.ForPurpose(Purpose.OFF) ... | ||
.ForStatus(Status.ACC) ... | ||
.ForMarket(Market.MIXBID) ... | ||
.Execute() |