예제 #1
0
        public RelativeStrengthIndex(IList <decimal> closes, int periodCount) : base(closes)
        {
            _rs = new RelativeStrength(closes, periodCount);

            PeriodCount = periodCount;
        }
예제 #2
0
 public RelativeStrengthIndex(Equity equity, int periodCount) : base(equity, periodCount)
 {
     _rsIndicator = new RelativeStrength(equity, periodCount);
 }