davidgaldon / yahoo-finance-managed

Automatically exported from code.google.com/p/yahoo-finance-managed
0 stars 0 forks source link

One year high/ low are empty #12

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem: (taking RIO.L for example)
 var csd = new CompanyStatisticsDownload();
            foreach (string sym in symbols)
            {
                CompanyStatisticResponse csr = csd.Download(sym);
                if (csr.Result != null)
                {
                    CompanyStatisticsData cs = csr.Result;
                    Console.WriteLine("Company:{0}", cs.Name);
                    Console.WriteLine("One year high = {0}", cs.TradingInfo.OneYearHigh);
                    Console.WriteLine("One year low = {0}", cs.TradingInfo.OneYearLow);
                    Console.WriteLine("% insiders = {0}", cs.TradingInfo.PercentHeldByInsiders);
                    Console.WriteLine("% institutions = {0}", cs.TradingInfo.PercentHeldByInstitutions);
                }
            }

What is the expected output? What do you see instead?
52wk Range: 2,751.00 - 4,592.0
But I see high = 0, low = 0, %insiders = 2751, %institutions = 4286

Original issue reported on code.google.com by simon...@gmail.com on 19 Dec 2010 at 1:11

GoogleCodeExporter commented 8 years ago
Hi Simon,
Sorry for late response!
The problem is fixed with update 0.8.

best regards

Maas

Original comment by Maas...@gmail.com on 23 Feb 2011 at 4:23

GoogleCodeExporter commented 8 years ago
Thanks Maas
Well done

Original comment by simon...@gmail.com on 23 Feb 2011 at 5:32