Skip to content

Commit ba00a99

Browse files
Merge pull request #17 from thorstenalpers/develop
Bugfix: close price value wrong
2 parents be95550 + 789453a commit ba00a99

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/Finance.NET.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1313

1414
<PackageId>Finance.NET</PackageId>
15-
<Version>1.0.1</Version>
15+
<Version>1.0.2</Version>
1616
<Authors>Thorsten Alpers</Authors>
1717
<Owners>Thorsten Alpers</Owners>
1818
<Description>Access financial data from Yahoo Finance and other sources.</Description>
1919
<PackageProjectUrl>https://github.com/thorstenalpers/Finance.NET</PackageProjectUrl>
2020
<RepositoryUrl>https://github.com/thorstenalpers/Finance.NET</RepositoryUrl>
2121
<PackageTags>Finance.NET;Nasdaq;Xetra;Yahoo;DataHub;Finance;Trading</PackageTags>
2222
<Copyright>Copyright 2024-2025</Copyright>
23-
<RepositoryType>git</RepositoryType>
23+
<RepositoryType>GitHub</RepositoryType>
2424
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2525
<PackageIcon>logo.png</PackageIcon>
2626
<PackageReadmeFile>README.md</PackageReadmeFile>

src/Utilities/AlphaVantageParser.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ namespace Finance.Net.Utilities;
1515
/// <inheritdoc />
1616
internal static class AlphaVantageParser
1717
{
18-
1918
public static List<IntradayRecord> ParseIntradayRecords(string symbol, EInterval interval, string jsonResponse)
2019
{
2120
var result = new List<IntradayRecord>();
@@ -76,7 +75,7 @@ public static List<Record> ParseRecords<T>(string symbol, DateTime? startDate, D
7675
Open = item.Value.Open,
7776
Low = item.Value.Low,
7877
High = item.Value.High,
79-
Close = item.Value.AdjustedClose,
78+
Close = item.Value.Close,
8079
AdjustedClose = item.Value.AdjustedClose,
8180
Volume = item.Value.Volume,
8281
SplitCoefficient = item.Value.SplitCoefficient,

0 commit comments

Comments
 (0)