From d5910c346483aa459aa8548dce7c445420b65a8d Mon Sep 17 00:00:00 2001 From: Bhumit Attarde Date: Mon, 11 Sep 2023 11:23:29 +0530 Subject: [PATCH] refactor: type of price to double (#71) --- include/kitepp/responses/order.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kitepp/responses/order.hpp b/include/kitepp/responses/order.hpp index c0e63a9..a83dc1d 100644 --- a/include/kitepp/responses/order.hpp +++ b/include/kitepp/responses/order.hpp @@ -64,7 +64,7 @@ struct placeOrderParams { int quantity; std::optional disclosedQuantity; - std::optional price; + std::optional price; std::optional triggerPrice; std::optional squareOff; std::optional stopLoss;