2
Follow
0
Followers
谁能帮帮我币安 Python限价止盈止损订单
实在是编不出来,哪个大神可以帮我个忙,感激不尽!
Related Recommendations
Inventor Quant Workflow FAQ (Continuously Updated)Financial Magic Zone Global KOL RecruitmentFAQ Summary (Updating...)PINE Language Introductory Tutorial of FMZ QuantPrimary Tutorial of Strategy Writing with FMZ Quant Trading Platform (Must Read)Getting Started with FMZ Quant Trading Platform (Must Read)
Comment
All comments (3)
javascript
let symbol = ""
let side = ""
let stopLossPrice = ""
let orderPrice = ""
let amount = ""
let positionSide = ""
let ret = exchange.IO("api", "POST", "/fapi/v1/order", "symbol=" + symbol + "&side=" + side + "&type=STOP&stopPrice=" + stopLossPrice + "&price=" + orderPrice + "&quantity=" + amount + "&positionSide=" + positionSide + "&workingType=MARK_PRICE&timeInForce=GTC")
发您一个JS参考例子,python也是基本一样。
10 months ago
- 1


