From bc208e73915efc74b06de0537750a3f83877c102 Mon Sep 17 00:00:00 2001 From: Abraham Lapscher Date: Fri, 19 Jan 2018 10:40:11 -0500 Subject: [PATCH] Update AccountMethods.md --- Documentation/AccountMethods.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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