DySystem.ClientLibrary
1.0.1
dotnet add package DySystem.ClientLibrary --version 1.0.1
NuGet\Install-Package DySystem.ClientLibrary -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DySystem.ClientLibrary" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DySystem.ClientLibrary" Version="1.0.1" />
<PackageReference Include="DySystem.ClientLibrary" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DySystem.ClientLibrary --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DySystem.ClientLibrary, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package DySystem.ClientLibrary@1.0.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=DySystem.ClientLibrary&version=1.0.1
#tool nuget:?package=DySystem.ClientLibrary&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DySystem.ClientLibrary
股票数据服务客户端库,提供对服务端 API 的便捷调用。
功能特性
- 股票信息查询
- K线数据获取
- 实时行情查询
- 东方财富K线数据直接获取
- 同步/异步调用支持
安装
dotnet add package DySystem.ClientLibrary
使用示例
using DySystem.ClientLibrary.Services;
// 创建客户端服务
var clientService = new StockKlineClientService();
// 获取股票信息
var stockInfo = clientService.GetStockInfo("000965");
// 获取K线数据
var klineData = clientService.GetKlineData("000965");
// 直接获取东方财富K线数据
var eastmoneyKline = clientService.GetEastmoneyKline(
"000965",
new DateTime(2026, 1, 1),
new DateTime(2026, 3, 3),
"101"); // 日K
// 异步调用
var klineDataAsync = await clientService.GetKlineDataAsync("000965");
周期参数说明
| 参数 | 说明 |
|---|---|
| 1 | 1分钟K线 |
| 5 | 5分钟K线 |
| 15 | 15分钟K线 |
| 30 | 30分钟K线 |
| 60 | 60分钟K线 |
| 101 | 日K线 |
依赖
- DySystem.Common
- DySystem.Messages
- DySystem.MQ
- DySystem.Indicators
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- DySystem.Common (>= 1.1.0)
- DySystem.Indicators (>= 1.0.1)
- DySystem.Messages (>= 1.0.1)
- DySystem.MQ (>= 1.0.1)
- EasyNetQ (>= 7.3.0)
- EasyNetQ.Serialization.SystemTextJson (>= 7.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.