Tabnine Logo
OrderStatusRequest
Code IndexAdd Tabnine to your IDE (free)

How to use
OrderStatusRequest
in
quickfix.fix44

Best Java code snippets using quickfix.fix44.OrderStatusRequest (Showing top 20 results out of 315)

origin: org.quickfixj/quickfixj-messages-all

public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
  getComponent(component);
  return component;
}
origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.Symbol get(quickfix.field.Symbol value) throws FieldNotFound {
  getField(value);
  return value;
}
origin: org.quickfixj/quickfixj-messages-all

public boolean isSetClOrdID() {
  return isSetField(11);
}
origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.OrderID getOrderID() throws FieldNotFound {
  return get(new quickfix.field.OrderID());
}
origin: org.quickfixj/quickfixj-messages-all

public OrderStatusRequest(quickfix.field.ClOrdID clOrdID, quickfix.field.Side side) {
  this();
  setField(clOrdID);
  setField(side);
}

origin: org.quickfixj/quickfixj-all

public void set(quickfix.fix44.component.Parties component) {
  setComponent(component);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

return new quickfix.fix44.OrderStatusRequest();
origin: org.knowm.xchange/xchange-btcchina

public static OrderStatusRequest createOrderStatusRequest(long nonce, String accessKey, String secretKey, String clOrdId, String orderId,
  String symbol) {
 String methodString = String.format("method=getOrder&params=%s,%s,1", orderId, symbol);
 String account = getAccountString(nonce, accessKey, secretKey, methodString);
 // Side is required, but insignificant.
 OrderStatusRequest message = new OrderStatusRequest(new ClOrdID(clOrdId), new Side(Side.BUY));
 message.set(new Account(account));
 message.set(new Symbol(symbol));
 message.set(new OrderID(orderId));
 return message;
}
origin: org.quickfixj/quickfixj-messages-fix44

public OrderStatusRequest() {
  super();
  getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
}

origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.NoPartyIDs getNoPartyIDs() throws FieldNotFound {
  return get(new quickfix.field.NoPartyIDs());
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public OrderStatusRequest(quickfix.field.ClOrdID clOrdID, quickfix.field.Side side) {
  this();
  setField(clOrdID);
  setField(side);
}

origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public void set(quickfix.fix44.component.Parties component) {
  setComponent(component);
}
origin: org.quickfixj/quickfixj-messages-fix44

return new quickfix.fix44.OrderStatusRequest();
origin: sutra/huobi-client

public static OrderStatusRequest buildOrderStatusRequest(
    String clOrdId,
    String accessKey,
    char side,
    String symbol) {
  OrderStatusRequest message = new OrderStatusRequest(
      new ClOrdID(clOrdId),
      new Side(side));
  message.set(new Account(accessKey));
  message.set(new Symbol(symbol));
  return message;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

public OrderStatusRequest() {
  super();
  getHeader().setField(new quickfix.field.MsgType(MSGTYPE));
}

origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.SecurityIDSource get(quickfix.field.SecurityIDSource value) throws FieldNotFound {
  getField(value);
  return value;
}
origin: org.quickfixj/quickfixj-messages-all

public quickfix.field.Product getProduct() throws FieldNotFound {
  return get(new quickfix.field.Product());
}
origin: org.quickfixj/quickfixj-messages-fix44

public OrderStatusRequest(quickfix.field.ClOrdID clOrdID, quickfix.field.Side side) {
  this();
  setField(clOrdID);
  setField(side);
}

origin: org.quickfixj/quickfixj-messages-all

public boolean isSetClOrdLinkID() {
  return isSetField(583);
}
origin: org.quickfixj/quickfixj-all

public quickfix.fix44.component.Parties get(quickfix.fix44.component.Parties component) throws FieldNotFound {
  getComponent(component);
  return component;
}
quickfix.fix44OrderStatusRequest

Most used methods

  • <init>
  • get
  • getComponent
  • getField
  • getHeader
  • isSetField
  • setComponent
  • setField
  • set

Popular in Java

  • Parsing JSON documents to java classes using gson
  • onRequestPermissionsResult (Fragment)
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now