संसाधन लोड हो रहा है... लोड करना...

o(_) o

लेखक:एलेउथेरोमानिया, बनाया गयाः 2024-08-08 16:20:45, अद्यतनः 2024-08-10 18:47:09

            side: "sell",
            tdMode: "cross",
            ordType: "post_only",
            px: event.depth.asks[0].price.toFixed(4),
            sz: "1",
        }],
        cancelOrders: order ? [{
            instId: order.instId,
            clOrdId: order.Id
        }] : []  // 确保 order 存在,否则返回空数组
    }
}

}

मुख्य फंक्शन let instId = exchange.SetContractType ((swap).InstrumentID;

let ctx = $.NewWSS(exchange, function(ws) {
    let msg = null;
    if (exchange.GetName() === 'Futures_OKCoin') {
        msg = {
            op: "subscribe",
            args: [{
                channel: "books5",
                instId: instId,
            }, {
                channel: "trades",
                instId: instId,
            }]
        };
    } else {
        let symbol = exchange.GetCurrency().replace('_', '').toLowerCase();
        msg = {
            method: "SUBSCRIBE",
            params: [symbol + "@aggTrade", symbol + "@depth20@100ms"],
            id: 1,
        };
    }
    ws.write(JSON.stringify(msg));
    Log("subscribe", msg, "channel");
    LogStatus("Ready");
}, onTick, false);

while (true) {
    ctx.poll();
    EventLoop(1000);
}

}


अधिक

आविष्कारक मात्रा - छोटे सपनेनमस्कार, त्रुटि ने कहा कि order परिभाषित नहीं है. यदि शर्त को true में बदल दिया गया है, लेकिन एक वाक्य ``let order = event.orders && event.orders[0]; // घटना से पहला आदेश `` प्राप्त करने का अनुमान है, तो order परिभाषित नहीं है. एक और कोड जारी करने के लिए प्रारूपः ` ` कोड ` ` ध्यान दें कि यह एक प्रतीक है, एक प्रतीक नहीं।

एलेउथेरोमानियाबहुत बहुत धन्यवाद