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


