
function TopMarketMakersSimple(caller,viewer,body,callback,pageSize,appId)
{this.caller=caller;this.viewer=viewer;this.body=body;this.callback=callback;this.pageSize=pageSize;this.appId=appId;}
TopMarketMakersSimple.prototype=new TopStatsWorklistSimple();TopMarketMakersSimple.prototype.gotoQuote=undefined;TopMarketMakersSimple.prototype.FOOTNOTES_REAL_TIME=['Market Maker data only includes Pink Link transactions.'];TopMarketMakersSimple.prototype.doTrades=function(body,pageSize,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_TRADE,undefined,tierGroupId),body);}
TopMarketMakersSimple.prototype.doVolume=function(body,pageSize,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_VOLUME,undefined,tierGroupId),body);}
TopMarketMakersSimple.prototype.doDollarVolume=function(body,pageSize,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_DOLLAR_VOLUME,undefined,tierGroupId),body);}
TopMarketMakersSimple.prototype.doFilter=function(filter,body)
{this.run(filter,body);}
TopMarketMakersSimple.prototype.makeCall=function(criteria,dataHandler)
{this.caller.getTopMarketMakers(criteria,dataHandler);}