bittrex-node
bittrex-node copied to clipboard
Market Methods not price but rate.
Market Methods
await client.buyLimit('BTC-ETH', { quantity: 2.1, price: 0.1 }) rate instead of price await client.buyLimit('BTC-ETH', { quantity: 2.1, rate: 0.1 })
await client.sellLimit('BTC-ETH', { quantity: 2.1, price: 0.1 }) rate instead of price await client.sellLimit('BTC-ETH', { quantity: 2.1, rate: 0.1 })