Ejemplo n.º 1
0
        public ProfitLoss profitLoss(DateTime refDate)
        { 
            // load p/l or calculate p/l

            ProfitLoss pl = new ProfitLoss();

            return pl;
        }
Ejemplo n.º 2
0
        public ProfitLoss getProfitLoss_hist(DateTime startDate, DateTime endDate)
        { 
            ProfitLoss pl = new ProfitLoss();

            // pl을 

            return pl;
        }
Ejemplo n.º 3
0
 public void merge(ProfitLoss profitLoss)
 {
     this.Trade_ += profitLoss.Trade_;
     this.Eval_ += profitLoss.Eval_;
     this.Total_ += profitLoss.Total_;
 }