इस सुविधा के बारे में कुछ भी नहीं किया गया है? 
चूंकि bitmex अक्सर अतिभारित होता है, इसलिए केवल सिस्टम में प्रवेश करने के लिए पहले से तैयार किए गए सिंगल ही लेनदेन कर सकते हैं। चित्रों पर तीरों को चित्रित करने के तीन कार्य महत्वपूर्ण हैं, और कई नौसिखियों ने इस पर ध्यान नहीं दिया है।
उदाहरण के लिए, यदि आप 4.2 के दिन 4300 ब्रेकआउट ट्रैकआउट सेट करते हैं, तो आप केवल स्टॉपआउट को खरीदने के लिए स्टॉपआउट विकल्प को सेट करते हैं, स्टॉपआउट की मात्रा और ट्रिगर की कीमत भरेंः 4300, और ट्रिगर के बाद ब्लीच को अनचेक करें।
पूछताछ के बाद, bitmex का अनुरोध पताः https://www.bitmex.com/api/v1/order
पोस्ट से अनुरोध करें
डेटा के लिए अनुरोधः
"symbol=" & symbol & "&price=" & price & "&quantity=" & qty & "&side=Buy&ordType=StopLimit&execInst=LastPrice" & "&stopPx=" & triggerprice
संबंधित पोस्ट में उल्लेख किया गया है कि एफएमजेड द्वारा ऑर्डर किए जाने पर निर्देश var id = exchange.IO (("api", "POST", "/api/v1/order", "symbol=XBTUSD&side=Buy&orderQty=1&price=5000&execInst=ParticipateDoNotInitiate")
तो कैसे आपरेशन इंटरफेस पर, खरीद-खरीद रोक-खोलने के विकल्प के बीच में सेट-अप खरीद-खरीद रोक-खोलने के विकल्प के बीच में सेट-अप बेच-खोलने के विकल्प के बीच में सेट-अप रोक-खोलने के लिए, बंद-खोलने के विकल्प के बीच में सेट-अप बेच-खोलने के लिए, बंद-खोलने के विकल्प के बीच में सेट-अप रोक-खोलने के लिए, बंद-खोलने के विकल्प के बीच में सेट-अप बेच-खोलने के लिए, बंद-खोलने के विकल्प के बीच में सेट-अप खरीद-खरीद रोक-खोलने के लिए और बंद-खोलने के बाद बंद-खोलने के विकल्प के बीच में सेट-अप बंद-खोलने के लिए ((इस विकल्प को नहीं चुनें) के आदेश के नीचे?
क्या आप इसे ऊपर दिए गए प्रारूप में उदाहरण के साथ समझा सकते हैं? धन्यवाद!
模拟测试报错2019-04-18 00:00:00 错误 main:686:10 - TypeError: Cannot convert "POST" to int。
Order Types
All orders require a symbol. All other fields are optional except when otherwise specified.
These are the valid ordTypes:
Limit: The default order type. Specify an orderQty and price.
Market: A traditional Market order. A Market order will execute until filled or your bankruptcy price is reached, at which point it will cancel.
Stop: A Stop Market order. Specify an orderQty and stopPx. When the stopPx is reached, the order will be entered into the book.
On sell orders, the order will trigger if the triggering price is lower than the stopPx. On buys, higher.
Note: Stop orders do not consume margin until triggered. Be sure that the required margin is available in your account so that it may trigger fully.
Close Stops don't require an orderQty. See Execution Instructions below.
StopLimit: Like a Stop Market, but enters a Limit order instead of a Market order. Specify an orderQty, stopPx, and price.
MarketIfTouched: Similar to a Stop, but triggers are done in the opposite direction. Useful for Take Profit orders.
LimitIfTouched: As above; use for Take Profit Limit orders.
可以看下 BITMEX API 文档上这段描述,如果需要下 买入止损 ,卖出止盈之类的的 单子,参考设置 参数 ordTypes:
有以下几种:
Limit: 传统的限价单
Market: 市价单
Stop: 市价止损单
StopLimit: 限价止损单
MarketIfTouched:
LimitIfTouched:
- 1
