2
Follow
0
Followers
Ai có thể giúp tôi đặt lệnh dừng lỗ cho Python?
Tôi không thể kể được, ai là vị thần lớn nhất có thể giúp tôi, cảm ơn nhiều!
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


