Пример #1
0
 public TrackedResults(HedgingPortfolio portfolio, double portfolioValue, double optionPayOff, DateTime date, double trackingError)
 {
     this.portfolio      = portfolio;
     this.portfolioValue = portfolioValue;
     this.payoff         = optionPayOff;
     this.date           = date;
     this.trackingError  = trackingError;
 }
Пример #2
0
 public TrackedResults(TrackedResults other)
 {
     this.portfolio      = other.portfolio;
     this.portfolioValue = other.portfolioValue;
     this.payoff         = other.payoff;
     this.date           = other.date;
     this.trackingError  = other.trackingError;
 }
Пример #3
0
 public HedgingPortfolio(HedgingPortfolio other)
 {
     this.riskyAsset    = other.riskyAsset;
     this.nonRiskyAsset = other.nonRiskyAsset;
 }