
function TopWombatTradesSimple(caller,viewer,body,callback,pageSize,appId)
{this.caller=caller;this.viewer=viewer;this.body=body;this.callback=callback;this.pageSize=pageSize;this.appId=appId;}
TopWombatTradesSimple.prototype=new TopStatsWorklistSimple();TopWombatTradesSimple.prototype.FOOTNOTES_DELAYED=['Intraday activity delayed 15 minutes.'];TopWombatTradesSimple.prototype.doTrades=function(body,pageSize,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_TRADE,undefined,tierGroupId),body);}
TopWombatTradesSimple.prototype.doVolume=function(body,pageSize,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_VOLUME,undefined,tierGroupId),body);}
TopWombatTradesSimple.prototype.doDollarVolume=function(body,pageSize,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_DOLLAR_VOLUME,undefined,tierGroupId),body);}
TopWombatTradesSimple.prototype.doGainers=function(body,pageSize,priceMin,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_GAIN,priceMin,tierGroupId),body);}
TopWombatTradesSimple.prototype.doLosers=function(body,pageSize,priceMin,tierGroupId)
{this.doFilter(new QtServTradeStatFilter(this.appId,pageSize,FIELD_LOSS,priceMin,tierGroupId),body);}
TopWombatTradesSimple.prototype.doFilter=function(filter,body)
{this.run(filter,body);}
TopWombatTradesSimple.prototype.makeCall=function(criteria,dataHandler)
{this.caller.getTopWombatTrades(criteria,dataHandler);}