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 存在,否则返回空数组
}
}
}
基本関数 (main)) {
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);
}
}
発明者 量化 - 微かな夢こんにちは,order が定義されていないと誤りです. if 条件をtrue に変更しましたが,1句が欠けています. `` let order = event.orders && event.orders[0]; // イベントから最初のorder を取得すると,order が定義されていない. 追加コードの形式は: ` ` ` コード ` ` ` 記号ではなく記号です.
エレウテロマニアありがとうございました