17 using System.Globalization;
19 using System.Collections.Generic;
23 internal sealed
class SortinoRatioReportElement : SharpeRatioReportElement
38 public SortinoRatioReportElement(
string name,
string key,
BacktestResult backtest,
LiveResult live,
int tradingDaysPerYear)
39 : base(name, key, backtest, live, tradingDaysPerYear)
49 public override double GetAnnualStandardDeviation(List<double> trailingPerformance,
double tradingDaysPerYear)
51 return Statistics.Statistics.AnnualDownsideStandardDeviation(trailingPerformance, tradingDaysPerYear);