리소스 로딩... 로딩...

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 存在,否则返回空数组
    }
}

}

함수 main() { 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가 정의되지 않았다는 오류가 있습니다. if 조건이 true로 변경되었으나, 단어가 빠졌습니다. 다른 코드 형식: ` ` ` 코드 ` ` ` '기호가 아니라 기호'

엘레우테로마니아감사합니다.