Skip to content

Commit

Permalink
Merge pull request #564 from gridsingularity/feature/FE-548
Browse files Browse the repository at this point in the history
FE-548: include NO_MARKET value in spot_market_type range limit
  • Loading branch information
spyrostz authored Dec 24, 2024
2 parents 854d36b + 077643f commit 8bd33c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gsy_framework/constants_limits.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class MASettings:
VALID_FEE_TYPES = [1, 2]
# Market type option
MARKET_TYPE = SpotMarketTypeEnum.ONE_SIDED.value
MARKET_TYPE_LIMIT = RangeLimit(1, 3)
MARKET_TYPE_LIMIT = RangeLimit(0, 3)

BID_OFFER_MATCH_TYPE = BidOfferMatchAlgoEnum.PAY_AS_BID.value
BID_OFFER_MATCH_TYPE_LIMIT = RangeLimit(1, 4)
Expand Down

0 comments on commit 8bd33c7

Please sign in to comment.