Example #1
0
        public void BasicTest()
        {
            IndicatorProbeFactory factory = new IndicatorProbeFactory();

            IndicatorProbe probe = factory.CreateSMAProbe(10);
        }
Example #2
0
        public IndicatorProbe <SMAOfPrices, float, float> CreateSMAProbe(int period)
        {
            IndicatorProbe <SMAOfPrices, float, float> indicatorProbe = new IndicatorProbe <SMAOfPrices, float, float>(new SMAOfPrices(period));

            return(indicatorProbe);
        }