public ProfitLoss profitLoss(DateTime refDate) { // load p/l or calculate p/l ProfitLoss pl = new ProfitLoss(); return pl; }
public ProfitLoss getProfitLoss_hist(DateTime startDate, DateTime endDate) { ProfitLoss pl = new ProfitLoss(); // pl을 return pl; }
public void merge(ProfitLoss profitLoss) { this.Trade_ += profitLoss.Trade_; this.Eval_ += profitLoss.Eval_; this.Total_ += profitLoss.Total_; }