Beispiel #1
0
        public static CDL3INSIDE 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((CDL3INSIDE)obj);
            }

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

            ds.Cache.Add(description, indicator);
            return(indicator);
        }
Beispiel #2
0
        public static CDL3INSIDE 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 (CDL3INSIDE)obj;

            //Create Doji, cache it, return it
            CDL3INSIDE indicator = new CDL3INSIDE(ds, description);
            ds.Cache.Add(description, indicator);
            return indicator;
        }