Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Fixed max_size. The script was taking maxPrice instead of maxQty. #1692

Merged
merged 13 commits into from
Aug 27, 2018
2 changes: 1 addition & 1 deletion extensions/exchanges/binance/update-products.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ new ccxt.binance().fetch_markets().then(function(markets) {
asset: market.base,
currency: market.quote,
min_size: min_size,
max_size: market.info.filters[0].maxPrice,
max_size: market.info.filters[1].maxQty,
increment: currStepSize,
asset_increment: assetStepSize,
label: market.base + '/' + market.quote
Expand Down