Examples of side()


Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      market.clearChanges();
      market.setChange(Component.BOOK_COMBINED);
     
      final DefBookEntry topAskPrice = new DefBookEntry(
          MODIFY, Book.Side.ASK,
          Book.Type.DEFAULT, ENTRY_TOP, price, top.side(Book.Side.ASK).sizeValue());
      applyTop(topAskPrice, time, market);
     
      return null;

    case ASK_LAST_SIZE:
View Full Code Here

Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      market.clearChanges();
      market.setChange(Component.BOOK_COMBINED);
     
      final DefBookEntry topAskSize = new DefBookEntry(
          MODIFY, Book.Side.ASK,
          Book.Type.DEFAULT, ENTRY_TOP, top.side(Book.Side.ASK).priceValue(), size);
      applyTop(topAskSize, time, market);
     
      return null;

    case BID_LAST: // NEW
View Full Code Here

Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      market.clearChanges();
      market.setChange(Component.BOOK_COMBINED);
     
      final DefBookEntry topBidPrice = new DefBookEntry(
          MODIFY, Book.Side.BID,
          Book.Type.DEFAULT, ENTRY_TOP, price, top.side(Book.Side.BID).sizeValue());
      applyTop(topBidPrice, time, market);
     
      return null;

    case BID_LAST_SIZE:
View Full Code Here

Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      market.clearChanges();
      market.setChange(Component.BOOK_COMBINED);
     
      final DefBookEntry topBidSize = new DefBookEntry(
          MODIFY, Book.Side.BID,
          Book.Type.DEFAULT, ENTRY_TOP, top.side(Book.Side.BID).priceValue(), size);
      applyTop(topBidSize, time, market);
     
      return null;

    case CLOSE_LAST: // NEW
View Full Code Here

Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      case ASK_LAST:
      case ASK_LAST_PRICE:

        final DefBookEntry topAskPrice = new DefBookEntry(
            MODIFY, Book.Side.ASK,
            Book.Type.DEFAULT, ENTRY_TOP, price, top.side(Book.Side.ASK).sizeValue());
        applyTop(topAskPrice, time, market);

        return null;

      case ASK_LAST_SIZE:
View Full Code Here

Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      case ASK_LAST_SIZE:

        final DefBookEntry topAskSize = new DefBookEntry(
            MODIFY, Book.Side.ASK,
            Book.Type.DEFAULT, ENTRY_TOP, top.side(Book.Side.ASK).priceValue(), size);
        applyTop(topAskSize, time, market);

        return null;

      case BID_LAST:
View Full Code Here

Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      case BID_LAST:
      case BID_LAST_PRICE:

        final DefBookEntry topBidPrice = new DefBookEntry(
            MODIFY, Book.Side.BID,
            Book.Type.DEFAULT, ENTRY_TOP, price, top.side(Book.Side.BID).sizeValue());
        applyTop(topBidPrice, time, market);

        return null;

      case BID_LAST_SIZE:
View Full Code Here

Examples of com.barchart.feed.base.book.api.MarketBookTop.side()

      case BID_LAST_SIZE:

        final DefBookEntry topBidSize = new DefBookEntry(
            MODIFY, Book.Side.BID,
            Book.Type.DEFAULT, ENTRY_TOP, top.side(Book.Side.BID).priceValue(), size);
        applyTop(topBidSize, time, market);

        return null;

      case CLOSE_LAST:
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.