A .NET API wrapper for Yahoo Finance that allows users to get top trending stocks, historical stock data, stock splits, dividends, capital gains, and much much more!
Apache License 2.0
55
stars
12
forks
source link
Modified the GetHistoricalData method to return a single class of stock data values to make it easier to parse through the data #93
PR Classification
API change to enhance data handling and improve robustness.
PR Summary
Updated classes to improve historical data handling and chart information creation.
ChartHelper.cs
: Added creation ofChartInfo
object with lists for dates, close prices, and open prices.HistoricalHelper.cs
: Enhanced deserialization of historical data and added error handling.HistoricalData.cs
: AddedHistoricalChartInfo
class and changedTimestamp
property type.YahooClient.cs
: Modified to returnIEnumerable<HistoricalChartInfo>
for historical data methods.