Class BitfinexPastTradesRequest

java.lang.Object
org.knowm.xchange.bitfinex.v1.dto.trade.BitfinexPastTradesRequest

public class BitfinexPastTradesRequest extends Object
  • Field Details

    • request

      protected String request
    • nonce

      protected String nonce
    • symbol

      protected String symbol
    • startTime

      protected long startTime
      REQUIRED Trades made before this timestamp won’t be returned
    • endTime

      protected Long endTime
      Trades made after this timestamp won’t be returned.
    • limitTrades

      protected Integer limitTrades
    • reverse

      protected Integer reverse
      Return trades in reverse order (the oldest comes first). Default is returning newest trades first. default: 0
  • Constructor Details

    • BitfinexPastTradesRequest

      public BitfinexPastTradesRequest(String nonce, String symbol, long startTime, Long endTime, Integer limitTrades, Integer reverse)