..NewRobot
विधि का उपयोग प्रत्यक्ष व्यापार के तहत बनाने के लिए किया जाता हैAPI KEY
अनुरोध में एफएमजेड क्वांट ट्रेडिंग प्लेटफॉर्म खाते से मेल खाता है।
// Create live trading successfully
{
"code": 0,
"data": {
"result": 74260,
"error": null
}
}
लाइव ट्रेडिंग कॉन्फ़िगरेशन पैरामीटरsettings
मापदंडों का प्रारूप इस प्रकार है:
{
"name": "hedge test",
/*
Strategy parameters; the order does not have to be in correspondence with the parameter order, but the name must be the same as the parameter name
Note: the second element in the parameter array ["MAType", 0, 75882] is an array including three elements,
in which the first one "MAType" is the parameter on the pattern referred by the live trading-binding strategy
The second one "0" is the specific value set by the parameter "MAType".
The third element, 75882, is the ID of the template to which the MAType parameter belongs, and is used to identify which template the parameter belongs to
*/
"args": [["Interval", 500], ["MAType", 0, 75882]],
// Strategy ID, which can be obtained by "GetStrategyList" method
"strategy": 25189,
// K-line period parameter; "60" indicates 60 seconds
"period": 60,
// It can be specified to run on which docker; no writing of the attribute will lead to automatic assignment
"node" : 52924,
// Custom field
"appid": "member2",
// Specify live trading group
"group": 1122,
"exchanges": [
// ZB; "pid" can be obtained by "GetPlatformList" method
{"pid": 15445, "pair": "ETH_BTC"},
// OKEX
{"pid": 13802, "pair": "BCH_BTC"},
// In addition to the exchanges configured by the FMZ dashboard (pid identification), you can also set exchange configuration information that has not been configured to operate the live trading
{"eid": "OKEX", "pair": "ETH_BTC", "meta" :{"AccessKey": "xxx", "SecretKey": "yyy"}},
{"eid": "Huobi", "pair": "BCH_BTC", "meta" :{"AccessKey": "xxx", "SecretKey": "yyy"}}
]
}
सेटिंग्स सच JSON ऑब्जेक्ट
जब आप संवेदनशील जानकारी का उपयोग करते हैं, जैसे कि मंचAPI KEY
, सहित"meta":{"AccessKey":"xxx","SecretKey":"yyy"}
के विन्यास मेंeid
, आपको पता होना चाहिए कि एफएमजेड डेटा स्टोर नहीं करता है।
डेटा सीधे डॉकर प्रोग्राम में भेजा जाएगा, इसलिए इस जानकारी को हर बार कॉन्फ़िगर किया जाना चाहिए जब लाइव ट्रेडिंग बनाई जाती है या फिर से शुरू की जाती है।
यदि आप लाइव व्यापार बनाने के लिए प्लगइन का उपयोग करता है कि मंच का समर्थन करने के लिए चाहते हैं, जब विन्यासsettings
पैरामीटर, आप के लिए निम्नलिखित सेटिंग्स करना चाहिएexchanges
विशेषताः
{"eid": "Exchange", "label" : "testXXX", "pair": "ETH_BTC", "meta" :{"AccessKey": "123", "SecretKey": "1234", "Front" : "http://127.0.0.1:6666/XXX"}}
label
विशेषता वर्तमान सामान्य प्रोटोकॉल द्वारा एक्सेस की गई एक्सचेंज ऑब्जेक्ट के लिए एक लेबल सेट करना है, जिसे प्राप्त किया जा सकता हैexchange.GetLabel()
कार्यनीति में भूमिका निभाना।