bitfinex-node-api
    Preparing search index...

    Interface ITradesSnapshotMessage

    Initial snapshot for a trades subscription. Raw frame: [CHAN_ID, [[ID, TIMESTAMP, PRICE, AMOUNT], ...]].

    interface ITradesSnapshotMessage {
        channel_id: number;
        trades: IWSTrade[];
        type: "trades_snapshot";
    }
    Index

    Properties

    channel_id: number
    trades: IWSTrade[]
    type: "trades_snapshot"