# Project cost to buy 50 BTC
https://api.cryptowat.ch/markets/binance/btcusdt/orderbook/calculator \
-d 'amount=50' | jq ".result.buy.spend"
# Project average price received for selling 12.5 BTC
https://api.cryptowat.ch/markets/binance/btcusdt/orderbook/calculator \
-d 'amount=12.5' | jq ".result.sell.avgPrice"
# Project average slippage, in basis points, for buying 150 BTC
https://api.cryptowat.ch/markets/binance/btcusdt/orderbook/calculator \
-d 'amount=150' | jq ".result.buy.avgDeltaBps"