Skip to content

Commit

Permalink
parse QuantityStepSize (base_increment) in Coinbase (#715)
Browse files Browse the repository at this point in the history
  • Loading branch information
vslee authored Jan 22, 2022
1 parent 855600f commit 3f1b463
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ protected internal override async Task<IEnumerable<ExchangeMarket>> OnGetMarketS
IsActive = string.Equals(product["status"].ToStringInvariant(), "online", StringComparison.OrdinalIgnoreCase),
MinTradeSize = product["base_min_size"].ConvertInvariant<decimal>(),
MaxTradeSize = product["base_max_size"].ConvertInvariant<decimal>(),
PriceStepSize = product["quote_increment"].ConvertInvariant<decimal>()
PriceStepSize = product["quote_increment"].ConvertInvariant<decimal>(),
QuantityStepSize = product["base_increment"].ConvertInvariant<decimal>(),
};
markets.Add(market);
}
Expand Down

0 comments on commit 3f1b463

Please sign in to comment.