コード例 #1
0
        protected override void OnBarUpdate()
        {
            #region Indicator formula
            PriceSeries.Set((High[0] + Low[0] + Close[0]) / 3);
            __TopLineSeries.Set(__TopLine);
            __BotLineSeries.Set(__BotLine);

            RSXvalue = JurikRSX(JurikJMA(PriceSeries, _JMA_phase, _JMA_len), _RSX_len)[0];
            RSXvalue = (CurrentBar < 31 ? 0 : 2 * RSXvalue - 100);
            RSXJMA.Set(RSXvalue);

            if (CurrentBar > 0)
            {
                phasedValue = RSXJMA[0] - PhaseShift * RSXJMA[1];
            }

            RSXRSXpos.Set(phasedValue > 0 ? RSXJMA[0] : 0);
            RSXRSXneg.Set(phasedValue < 0 ? RSXJMA[0] : 0);
            Phased_blend.Set(phasedValue);
            #endregion

            #region Panel Stabilizer
            panel_range_min.Set(-1);
            panel_range_max.Set(101);
            #endregion
        }
コード例 #2
0
        protected override void OnBarUpdate()
        {
            #region Indicator Formula
            PriceSeries.Set((High[0] + Low[0] + Close[0]) / 3);
            UpperSeries.Set(__UpperBand);
            LowerSeries.Set(__LowerBand);

            RSX1 = JurikRSX(PriceSeries, _RSX_len)[0];
            RSX1_Series.Set(RSX1);
            RSX2    = JurikRSX(RSX1_Series, _RSX_len * 2)[0];
            mixture = (1 - Blend) * RSX1 + Blend * RSX2;
            RSX_blend.Set(CurrentBar < 31 ? 0 : 2 * mixture - 100);

            if (CurrentBar > 0)
            {
                phasedValue = RSX_blend[0] - PhaseShift * RSX_blend[1];
            }

            RSXRSXpos.Set(phasedValue > 0 ? RSX_blend[0] : 0);
            RSXRSXneg.Set(phasedValue < 0 ? RSX_blend[0] : 0);
            Phased_blend.Set(phasedValue);
            #endregion

            #region Panel Stabilizer
            panel_range_min.Set(-101);
            panel_range_max.Set(101);
            #endregion
        }
コード例 #3
0
        protected override void OnBarUpdate()
        {
            #region Indicator Formula
            PriceSeries.Set((High[0] + Low[0] + Close[0]) / 3);
            UpperSeries.Set(__UpperBand);
            LowerSeries.Set(__LowerBand);

            RSX_fast = 2 * JurikRSX(PriceSeries, _RSX_fast_len)[0] - 100;
            RSX_slow = 2 * JurikRSX(PriceSeries, _RSX_slow_len)[0] - 100;
            mixture  = Blend * RSX_fast + (1 - Blend) * RSX_slow;
            rsxcolor = ColorShift * RSX_fast + (1 - ColorShift) * RSX_slow;

            RSX_blend.Set(CurrentBar < 31 ? 0 : mixture);
            RSX_color.Set(CurrentBar < 31 ? 0 : rsxcolor);
            RSXRSXpos.Set(rsxcolor > 0 ? RSX_blend[0] : 0);
            RSXRSXneg.Set(rsxcolor < 0 ? RSX_blend[0] : 0);
            #endregion

            #region Panel Stabilizer
            panel_range_min.Set(-101);
            panel_range_max.Set(101);
            #endregion
        }