Web Development
fbts.txt
Associated article: Creating Electronic Markets
Tags: Web Development JVM Languages
Published source code accompanying the article by by Ming Fan, Jan Stallaert, and Andrew B. Whinston in which they describe a web-based Financial Bundle Trading System that lets you access financial markets using Java applets embedded in web browsers.
Creating Electronic Markets
by Ming Fan, Jan Stallaert, Andrew B. Whinston
Listing One
// Market Maker implementation.
// Implements methods defined in MarketMakerInterface
public class MarketMakerImpl extends UnicastRemoteObject implements
MarketMakerInterface {
...
// implement the method SendOrder() advertised in interface
public synchronized int SendOrder(Bundle ...


