glitch100 / BinanceDotNet

Official C# Wrapper for the Binance exchange API, with REST and WebSocket endpoints
https://www.nuget.org/packages/BinanceDotNet/
MIT License
161 stars 138 forks source link

Malformed requests are sent to the server. Please review the request object/string #175

Open askycat opened 4 years ago

askycat commented 4 years ago

Issue Overview

A short description of the issue

Package Version: ?.?.?

Repro Steps

Other Information

Other information here

stevep-hyuna commented 3 years ago

Look in the exception that's thrown. You are probably passing invalid quantities or prices. You need to look at the exchangeinfo and ensure you don't use units too small or big in your requests (i.e. 0.0001 might be valid but 0.00000001 might not). Noting this for future users.