public BollingerBandWidth(IList <decimal> closes, int periodCount, decimal sdCount) : base(closes) { _bb = new BollingerBands(closes, periodCount, sdCount); PeriodCount = periodCount; SdCount = sdCount; }
public BollingerBandWidth(Equity equity, int periodCount, int sdCount) : base(equity, periodCount, sdCount) { _bbIndicator = new BollingerBands(equity, periodCount, sdCount); }