وسائل لوڈ ہو رہے ہیں... لوڈنگ...

نیو روبوٹ

کے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، آپ کو پتہ ہونا چاہئے FMZ ڈیٹا ذخیرہ نہیں کرتا. اعداد و شمار براہ راست ڈوکر پروگرام میں بھیجے جائیں گے ، لہذا جب بھی براہ راست تجارت بنائی جاتی ہے یا دوبارہ شروع کی جاتی ہے تو اس معلومات کو ترتیب دینا ضروری ہے۔

آپ کو پلیٹ فارم کی حمایت کرنے کے لئے پلگ ان کا استعمال کرتا ہے کہ لائیو ٹریڈنگ تخلیق کرنا چاہتے ہیں تو، ترتیب دیتے وقت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()اسٹریٹجی میں کردار.

GetStrategyList حاصل کریں پلگ ان چلائیں