দ্যNewRobot
এই পদ্ধতি ব্যবহার করা হয় একটি লাইভ ট্রেডিংAPI KEY
অনুরোধে FMZ কোয়ান্ট ট্রেডিং প্ল্যাটফর্মের অ্যাকাউন্টের সাথে মিলে যায়।
// 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()
কৌশল মধ্যে ফাংশন।