Skip to content

Commit ef91aab

Browse files
committed
Add stopLimitPrice
1 parent b8b9f6f commit ef91aab

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/main/java/com/binance/api/client/domain/account/NewOrder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ public class NewOrder {
5858
*/
5959
private String stopPrice;
6060

61+
/**
62+
* Used with stop orders.
63+
*/
64+
private String stopLimitPrice;
65+
6166
/**
6267
* Used with iceberg orders.
6368
*/

src/main/java/com/binance/api/client/domain/account/Order.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ public class Order {
7070
*/
7171
private String stopPrice;
7272

73+
/**
74+
* Used with stop orders.
75+
*/
76+
private String stopLimitPrice;
77+
7378
/**
7479
* Used with iceberg orders.
7580
*/

0 commit comments

Comments
 (0)