Class OrderMoveParameters

java.lang.Object
velox.api.layer1.data.OrderUpdateParameters
velox.api.layer1.data.OrderMoveParameters

public class OrderMoveParameters
extends OrderUpdateParameters
Used to change order price(s)
  • Field Summary

    Fields 
    Modifier and Type Field Description
    double limitPrice
    New limit price, NaN if order does not have a limit price
    double stopPrice
    New stop price, NaN if order does not have a stop price

    Fields inherited from class velox.api.layer1.data.OrderUpdateParameters

    orderId
  • Constructor Summary

    Constructors 
    Constructor Description
    OrderMoveParameters​(java.lang.String orderId, double stopPrice, double limitPrice)  
  • Method Summary

    Modifier and Type Method Description
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • stopPrice

      public final double stopPrice
      New stop price, NaN if order does not have a stop price
    • limitPrice

      public final double limitPrice
      New limit price, NaN if order does not have a limit price
  • Constructor Details

    • OrderMoveParameters

      public OrderMoveParameters​(java.lang.String orderId, double stopPrice, double limitPrice)
  • Method Details