Interface OpenOrdersParamInstrument

All Superinterfaces:
InstrumentParam, OpenOrdersParams
All Known Implementing Classes:
DefaultOpenOrdersParamInstrument

public interface OpenOrdersParamInstrument
extends OpenOrdersParams, InstrumentParam
  • Method Summary

    Modifier and Type Method Description
    default boolean accept​(Order order)
    Added later, this method allows the filter to also to apply to stop orders, at a small cost.
    default boolean accept​(LimitOrder order)
    Checks if passed order is suitable for open orders params.

    Methods inherited from interface org.knowm.xchange.service.trade.params.InstrumentParam

    getInstrument, setInstrument
  • Method Details

    • accept

      default boolean accept​(LimitOrder order)
      Description copied from interface: OpenOrdersParams
      Checks if passed order is suitable for open orders params. May be used for XChange side orders filtering
      Specified by:
      accept in interface OpenOrdersParams
      Parameters:
      order - The order to filter.
      Returns:
      true if order is ok
    • accept

      default boolean accept​(Order order)
      Description copied from interface: OpenOrdersParams
      Added later, this method allows the filter to also to apply to stop orders, at a small cost. It should be explicitly implemented for better performance.
      Specified by:
      accept in interface OpenOrdersParams
      Parameters:
      order - The order to filter.
      Returns:
      true if order is ok.