2
Follow
0
Followers
누가 파이썬 제한 가격 정지/손실 명령에 대해 도움을 줄 수 있습니까?
저는 이 모든 것을 제 인생에 적용할 수 있다고 믿습니다.
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


