コード例 #1
0
 public void Add(MarketDetailDaily m)
 {
     this.Comm   += m.TotalCommission_WithoutFeesAndCharges;
     this.ECN    += m.ECNRebate;
     this.Gross  += m.FirstMoney;
     this.Shares += m.ExQuan;
     this.Other  += m.SecFee + m.NasdTradingActivityFee + m.ExchangeFee + m.NSCCPassThru + m.SIPC + m.FTT;
 }
コード例 #2
0
 public CompareDaily(MarketDetailDaily m, string trader)
 {
     this.TRADER  = trader;
     this.Comm    = m.TotalCommission_WithoutFeesAndCharges;
     this.DATE    = m.TradeDate.Date;
     this.ECN     = m.ECNRebate;
     this.Gross   = m.FirstMoney;
     this.Shares  = m.ExQuan;
     this.Symbol2 = m.Symbol2;
     this.Other   = m.SecFee + m.NasdTradingActivityFee + m.ExchangeFee + m.NSCCPassThru + m.SIPC + m.FTT;
 }