Skip to content

Commit

Permalink
Release v1.5.0
Browse files Browse the repository at this point in the history
Added support for XBid
  • Loading branch information
MarcoGix committed Sep 26, 2023
1 parent 73619a7 commit ba64049
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Artesian.SDK.prj
Original file line number Diff line number Diff line change
Expand Up @@ -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 />
Expand Down Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion Configuration/ArtesianConstants.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
QueryRoute = "query";
MetadataVersion = "v2.1";
GMEPublicOfferRoute = "gmepublicoffer"
GMEPublicOfferVersion = "v1.0"
GMEPublicOfferVersion = "v2.0"
end

end
Expand Down
3 changes: 2 additions & 1 deletion GMEPublicOffer/Enums/Market.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
MB5,
MB6,
MBh,
MRR
MRR,
MIXBID
end

end
7 changes: 4 additions & 3 deletions Test/TestGMEPublicOffer.m
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()

0 comments on commit ba64049

Please sign in to comment.