public static CDL3OUTSIDE 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((CDL3OUTSIDE)obj); } //Create Doji, cache it, return it CDL3OUTSIDE indicator = new CDL3OUTSIDE(ds, description); ds.Cache.Add(description, indicator); return(indicator); }
public static CDL3OUTSIDE 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 (CDL3OUTSIDE)obj; //Create Doji, cache it, return it CDL3OUTSIDE indicator = new CDL3OUTSIDE(ds, description); ds.Cache.Add(description, indicator); return indicator; }