/// <summary> /// Static method to create Arron DataSeries /// </summary> /// <param name="ds"></param> /// <param name="period"></param> /// <param name="name"></param> /// <returns></returns> public static HTTRENDMODE Series(DataSeries 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 (HTTRENDMODE)obj; //Create indicator, cache it, return it HTTRENDMODE indicator = new HTTRENDMODE(ds, description); ds.Cache.Add(description, indicator); return indicator; }
/// <summary> /// Static method to create Arron DataSeries /// </summary> /// <param name="ds"></param> /// <param name="period"></param> /// <param name="name"></param> /// <returns></returns> public static HTTRENDMODE Series(DataSeries 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((HTTRENDMODE)obj); } //Create indicator, cache it, return it HTTRENDMODE indicator = new HTTRENDMODE(ds, description); ds.Cache.Add(description, indicator); return(indicator); }