/// <summary>
        /// Simple clone implementation will not clone results and signals, only parameters.
        /// </summary>
        /// <returns></returns>
        public override PlatformIndicator OnSimpleClone()
        {
            ZigZagCustom result = new ZigZagCustom();
            result._description = this._description;
            result._name = this._name;
            result._significancePercentage = this._significancePercentage;
            result._useOpenClose = this._useOpenClose;

            return result;
        }
Пример #2
0
        /// <summary>
        /// Simple clone implementation will not clone results and signals, only parameters.
        /// </summary>
        /// <returns></returns>
        public override PlatformIndicator OnSimpleClone()
        {
            ZigZagCustom result = new ZigZagCustom();

            result._description            = this._description;
            result._name                   = this._name;
            result._significancePercentage = this._significancePercentage;
            result._useOpenClose           = this._useOpenClose;

            return(result);
        }