Ejemplo n.º 1
0
        /// <summary>
        /// Static method to create HT_PHASOR DataSeries
        /// </summary>
        /// <param name="ds"></param>
        /// <param name="period"></param>
        /// <param name="name"></param>
        /// <returns></returns>
        public static HT_PHASOR Series(DataBars ds, string name)
        {
            //Build description
            string description = "(" + name  + ")";
            //See if it exists in the cache
            object obj = ds.Cache.Find(description);
            if (obj != null) return (HT_PHASOR)obj;

            //Create indicator, cache it, return it
            HT_PHASOR indicator = new HT_PHASOR(ds, description);
            ds.Cache.Add(description, indicator);
            return indicator;
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Static method to create HT_PHASOR DataSeries
        /// </summary>
        /// <param name="ds"></param>
        /// <param name="period"></param>
        /// <param name="name"></param>
        /// <returns></returns>
        public static HT_PHASOR Series(DataBars ds, string name)
        {
            //Build description
            string description = "(" + name + ")";
            //See if it exists in the cache
            object obj = ds.Cache.Find(description);

            if (obj != null)
            {
                return((HT_PHASOR)obj);
            }

            //Create indicator, cache it, return it
            HT_PHASOR indicator = new HT_PHASOR(ds, description);

            ds.Cache.Add(description, indicator);
            return(indicator);
        }