/// <summary> /// Static method to create Arron DataSeries /// </summary> /// <param name="ds"></param> /// <param name="period"></param> /// <param name="name"></param> /// <returns></returns> public static Aroon Series(DataBars ds, double period, string name) { //Build description string description = "(" + name + "," + period.ToString() + ")"; //See if it exists in the cache object obj = ds.Cache.Find(description); if (obj != null) return (Aroon)obj; //Create Aroon, cache it, return it Aroon aroon = new Aroon(ds, period, description); ds.Cache.Add(description, aroon); return aroon; }
/// <summary> /// Static method to create Arron DataSeries /// </summary> /// <param name="ds"></param> /// <param name="period"></param> /// <param name="name"></param> /// <returns></returns> public static Aroon Series(DataBars ds, double period, string name) { //Build description string description = "(" + name + "," + period.ToString() + ")"; //See if it exists in the cache object obj = ds.Cache.Find(description); if (obj != null) { return((Aroon)obj); } //Create Aroon, cache it, return it Aroon aroon = new Aroon(ds, period, description); ds.Cache.Add(description, aroon); return(aroon); }