Example #1
0
        private void AddTodayPrice(double price, bool isUp)
        {
            PriceUpDown prop = new PriceUpDown(price, isUp);

            Prices_.Add(prop);
            if (Prices_.Count > RSICALCDAYS)
            {
                Prices_.RemoveAt(0);
            }
        }
Example #2
0
        private void AddTodayPrice(double price, bool isUp)
        {
            PriceUpDown prop = new PriceUpDown(price, isUp);

            Prices_.Add(prop);
            if (Prices_.Count > RSICALCDAYS)
            {
                Prices_.RemoveAt(0);
            }
        }