Beispiel #1
0
        public Interfaces.Indicators.Aroon Aroon(int period, DataStream stream, TimeSpan barSize)
        {
            var nmodule = new Aroon(period, barSize, stream);

            return(_manager.Subscribe <Aroon>(nmodule));
        }
Beispiel #2
0
        public Interfaces.Indicators.Aroon Aroon(int period, DataStream stream)
        {
            var nmodule = new Aroon(period, _manager.Agent.TimeFrame, stream);

            return(_manager.Subscribe <Aroon>(nmodule));
        }
Beispiel #3
0
        public Interfaces.Indicators.Aroon Aroon(int period, DataStream stream, TimeSpan barSize, Func <Bar, decimal> computeLow, Func <Bar, decimal> computeHigh)
        {
            var nmodule = new Aroon(period, barSize, stream, computeLow, computeHigh);

            return(_manager.Subscribe <Aroon>(nmodule));
        }