diff --git a/Documentation/AccountMethods.md b/Documentation/AccountMethods.md index e91e931..60fc9db 100644 --- a/Documentation/AccountMethods.md +++ b/Documentation/AccountMethods.md @@ -20,7 +20,7 @@ Post new iceberg order ### Method Signature: ```c# - public async Task PostNewOrder(string symbol, decimal quantity, decimal price, OrderType orderType, OrderSide side, TimeInForce timeInForce = TimeInForce.GTC, long recvWindow = 6000000) + public async Task PostNewOrder(string symbol, decimal quantity, decimal price, OrderSide side, OrderType orderType = OrderType.LIMIT, TimeInForce timeInForce = TimeInForce.GTC, decimal icebergQty = 0m, long recvWindow = 5000) ``` ## Post test order @@ -28,12 +28,12 @@ Test new order creation and signature/recvWindow long. Creates and validates a n ### Example: ```c# - var testOrder = binanceClient.PostNewOrderTest("ethbtc", 1m, 0.1m, OrderType.LIMIT, OrderSide.BUY).Result; + var testOrder = binanceClient.PostNewOrderTest("ethbtc", 1m, 0.1m, OrderSide.BUY, OrderType.LIMIT).Result; ``` ### Method Signature: ```c# - public async Task PostNewOrderTest(string symbol, decimal quantity, decimal price, OrderType orderType, OrderSide side, TimeInForce timeInForce = TimeInForce.GTC, long recvWindow = 6000000) + public async Task PostNewOrderTest(string symbol, decimal quantity, decimal price, OrderSide side, OrderType orderType = OrderType.LIMIT, TimeInForce timeInForce = TimeInForce.GTC, decimal icebergQty = 0m, long recvWindow = 5000) ``` ## Get order