public MinusDIIndicatorTest()
     : base((ts, v) => new MinusDIIndicator(ts, v[0]))
 {
     xls = new XLSIndicatorTest(GetType(), @"TestData\Indicators\adx\ADX.xls", 13);
 }
Beispiel #2
0
 public SMAIndicatorTest()
     : base((t, v) => new SMAIndicator(t, (int)v[0]))
 { // throws exception
     xls = new XLSIndicatorTest(GetType(), @"TestData\indicators\SMA.xls", 6);
 }
Beispiel #3
0
 public MMAIndicatorTest()
     : base((t, v) => new MMAIndicator(t, (int)v[0]))
 {
     xls = new XLSIndicatorTest(GetType(), @"TestData\indicators\MMA.xls", 6);
 }
Beispiel #4
0
 public ADXIndicatorTest()
     : base((t, v) => new ADXIndicator(t, (int)v[0], (int)v[1]))
 {
     xls = new XLSIndicatorTest(GetType(), @"TestData\indicators\adx\ADX.xls", 15);
 }
 public PlusDIIndicatorTest()
     : base((t, v) => new PlusDIIndicator(t, (int)v[0]))
 {
     xls = new XLSIndicatorTest(GetType(), @"TestData\Indicators\adx\ADX.xls", 12);
 }
Beispiel #6
0
        //private ExternalIndicatorTest sql;

        public RSIIndicatorTest()
            : base((t, v) => new RSIIndicator(t, (int)v[0]))
        {
            xls = new XLSIndicatorTest(GetType(), @"TestData\indicators\RSI.xls", 10);
        }
Beispiel #7
0
 public ATRIndicatorTest()
     : base((t, v) => new ATRIndicator(t, (int)v[0]))
 {
     xls = new XLSIndicatorTest(GetType(), @"TestData\indicators\ATR.xls", 7);
 }