Exemplo n.º 1
0
 protected override void Create()
 {
     m_ultimateoscillator1 = new UltimateOscillator(this);
     Plot1 =
         AddPlot(new PlotAttributes("UltOsc", 0, Color.Yellow,
                                    Color.Empty, 0, 0, true));
 }
Exemplo n.º 2
0
        public ReversalGenesis(int n)
            : base(n)
        {
            T3    = new AdaptiveSmoothing(n);
            T32   = new AdaptiveSmoothing(5 * n);
            CCI   = new CCI(n);
            WILLR = new WilliamsR(n);

            Gann = new GannHiLo(n);
            KST  = new KST();
            CH   = new Chaikin();
            BB   = new BollingerBands(n);
            UO   = new UltimateOscillator(n, 2 * n, 3 * n);
        }