Example #1
0
 public EquityStats(double startingEquity, TransactionPairs daily, TransactionPairs weekly, TransactionPairs monthly, TransactionPairs yearly)
 {
     this.daily   = new TradeStats(startingEquity, daily);
     this.weekly  = new TradeStats(startingEquity, weekly);
     this.monthly = new TradeStats(startingEquity, monthly);
     this.yearly  = new TradeStats(startingEquity, yearly);
 }
Example #2
0
 public StrategyStats(TransactionPairs combo)
 {
     this.comboTrades = new TradeStats(combo);
 }