@@ -751,7 +751,7 @@ def create_order(self, **params):
751751 :param quantity: required
752752 :type quantity: decimal
753753 :param price: required
754- :type price: decimal
754+ :type price: str
755755 :param newClientOrderId: A unique id for the order. Automatically generated if not sent.
756756 :type newClientOrderId: str
757757 :param icebergQty: Used with LIMIT, STOP_LOSS_LIMIT, and TAKE_PROFIT_LIMIT to create an iceberg order.
@@ -859,7 +859,7 @@ def order_limit(self, timeInForce=TIME_IN_FORCE_GTC, **params):
859859 :param quantity: required
860860 :type quantity: decimal
861861 :param price: required
862- :type price: decimal
862+ :type price: str
863863 :param timeInForce: default Good till cancelled
864864 :type timeInForce: enum
865865 :param newClientOrderId: A unique id for the order. Automatically generated if not sent.
@@ -894,7 +894,7 @@ def order_limit_buy(self, timeInForce=TIME_IN_FORCE_GTC, **params):
894894 :param quantity: required
895895 :type quantity: decimal
896896 :param price: required
897- :type price: decimal
897+ :type price: str
898898 :param timeInForce: default Good till cancelled
899899 :type timeInForce: enum
900900 :param newClientOrderId: A unique id for the order. Automatically generated if not sent.
@@ -928,7 +928,7 @@ def order_limit_sell(self, timeInForce=TIME_IN_FORCE_GTC, **params):
928928 :param quantity: required
929929 :type quantity: decimal
930930 :param price: required
931- :type price: decimal
931+ :type price: str
932932 :param timeInForce: default Good till cancelled
933933 :type timeInForce: enum
934934 :param newClientOrderId: A unique id for the order. Automatically generated if not sent.
@@ -1050,7 +1050,7 @@ def create_test_order(self, **params):
10501050 :param quantity: required
10511051 :type quantity: decimal
10521052 :param price: required
1053- :type price: decimal
1053+ :type price: str
10541054 :param newClientOrderId: A unique id for the order. Automatically generated if not sent.
10551055 :type newClientOrderId: str
10561056 :param icebergQty: Used with iceberg orders
0 commit comments