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 存在,否则返回空数组
}
}
}
função principal (() {
let instId = exchange.SetContractType ((
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);
}
}
Inventor quantificado - sonho pequenoOlá, o erro é que a ordem não está definida. Mudou a condição if para true, mas falta uma frase ``let order = event.orders && event.orders[0]; // Suponha que a primeira ordem seja obtida do evento ```, então a ordem não está definida. O formato de código adicional é: Não sei. Código Não sei. "Não é um símbolo, é um símbolo".
EleutheromaniaMuito obrigado.