2
Follow
0
Followers
Wer kann mir helfen, mit dem Python Limit Stop Loss Order?
Ich kann es nicht auszählen, wer von den großen Göttern könnte mir helfen, und ich bin sehr dankbar.
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


