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

How to use
MarketDataSnapshotFullRefresh
in
quickfix.fix44

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

origin: org.quickfixj/quickfixj-messages-all

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

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

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

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

public void set(quickfix.field.SymbolSfx value) {
  setField(value);
}
origin: sutra/okcoin-client

  final SessionID sessionId)
  throws FieldNotFound, UnsupportedMessageType, IncorrectTagValue {
Date origTime = message.getField(new OrigTime()).getValue();
String symbol = message.getSymbol().getValue();
String mdReqId = message.isSetMDReqID() ? message.getMDReqID().getValue() : null;
CurrencyPair currencyPair = OKCoinFIXAdapters.adaptCurrencyPair(symbol);
  volume = null;
for (int i = 1, l = message.getNoMDEntries().getValue(); i <= l; i++) {
  Group group = message.getGroup(i, NoMDEntries.FIELD);
  char type = group.getChar(MDEntryType.FIELD);
  BigDecimal px = group.getField(new MDEntryPx()).getValue();
origin: org.knowm.xchange/xchange-btcchina

public static Ticker adaptTicker(MarketDataSnapshotFullRefresh message) throws FieldNotFound {
 Ticker.Builder tickerBuilder = new Ticker.Builder();
 String symbol = message.getSymbol().getValue();
 tickerBuilder.currencyPair(BTCChinaAdapters.adaptCurrencyPair(symbol));
 int noMDEntries = message.getNoMDEntries().getValue();
 for (int i = 1; i <= noMDEntries; i++) {
  Group group = message.getGroup(i, NoMDEntries.FIELD);
  adapt(tickerBuilder, group);
 }
 Ticker ticker = tickerBuilder.build();
 return ticker;
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.quickfix

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

origin: org.quickfixj/quickfixj-messages-all

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

return new quickfix.fix44.MarketDataSnapshotFullRefresh();
origin: org.quickfixj/quickfixj-messages-all

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

public void set(quickfix.field.SecurityType value) {
  setField(value);
}
origin: org.quickfixj/quickfixj-messages-fix44

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

origin: org.quickfixj/quickfixj-all

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

return new quickfix.fix44.MarketDataSnapshotFullRefresh();
origin: org.quickfixj/quickfixj-messages-all

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

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

public void set(quickfix.field.Factor value) {
  setField(value);
}
origin: org.quickfixj/quickfixj-messages-all

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

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

quickfix.fix44MarketDataSnapshotFullRefresh

Most used methods

  • getField
  • <init>
  • get
  • getComponent
  • getHeader
  • isSetField
  • setComponent
  • setField
  • getGroup
  • getNoMDEntries
  • getSymbol
  • getMDReqID
  • getSymbol,
  • getMDReqID,
  • isSetMDReqID

Popular in Java

  • Reading from database using SQL prepared statement
  • onRequestPermissionsResult (Fragment)
  • setScale (BigDecimal)
  • putExtra (Intent)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top Vim 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