Example #1
0
        private IEnumerable <decimal> Quote(RankedEtf etf)
        {
            var valuesList = new List <decimal>();

            for (var i = 13; i >= 1; i--)
            {
                var quota = etf.QuotaMese(i);
                valuesList.Add(quota.HasValue ? quota.Value : 0);
            }
            return(valuesList);
        }