Example #1
0
        protected override Overboundary?ComputeByIndexImpl(IEnumerable <decimal> mappedInputs, int index)
        {
            var result = _bb[index];

            return(StateHelper.IsOverbound(mappedInputs.ElementAt(index), result.LowerBand, result.UpperBand));
        }
Example #2
0
        protected override Overboundary?ComputeByIndexImpl(int index)
        {
            var result = _bb[index];

            return(StateHelper.IsOverbound(Inputs[index], result.LowerBand, result.UpperBand));
        }