MoexIIS 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package MoexIIS --version 1.0.5
NuGet\Install-Package MoexIIS -Version 1.0.5
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="MoexIIS" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MoexIIS --version 1.0.5
#r "nuget: MoexIIS, 1.0.5"
#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.
// Install MoexIIS as a Cake Addin
#addin nuget:?package=MoexIIS&version=1.0.5

// Install MoexIIS as a Cake Tool
#tool nuget:?package=MoexIIS&version=1.0.5

MoexIIS

C# client library and OpenAPI spec for Moex IIS

Nuget

NuGet

Install-Package MoexIIS

Usage

using MoexIIS;

using var client = new HttpClient();
var api = new MoexIISApi(client);

await api.AuthenticateAsync(username, password);

var values = await api.GetOpenPositionsOnFuturesAsync("si", iss_json: "extended", iss_meta: "off");
var positions = values.ElementAt(1).Futoi ?? throw new InvalidOperationException("Futoi is null.");
var yur = positions.ElementAt(0);
var fiz = positions.ElementAt(1);
var dates = values.ElementAt(1).FutoiDates ?? throw new InvalidOperationException("FutoiDates is null.");
var from = dates.ElementAt(0).From;
var till = dates.ElementAt(0).Till;

Console.WriteLine($"Open positions: {from}-{till}");
Console.WriteLine($"Time: {yur.Tradetime}. Group: {yur.Clgroup}. Longs: {yur.Pos_long}/{yur.Pos_long_num}. Shorts: {-yur.Pos_short}/{yur.Pos_short_num}");
Console.WriteLine($"Time: {fiz.Tradetime}. Group: {fiz.Clgroup}. Longs: {fiz.Pos_long}/{fiz.Pos_long_num}. Shorts: {-fiz.Pos_short}/{fiz.Pos_short_num}");

Contacts

Initial OpenAPI spec from:
https://github.com/Klawru/MoexApiSwagger

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.31 209 5/4/2022
1.0.26 187 5/4/2022
1.0.16 166 5/4/2022
1.0.15 173 5/4/2022
1.0.14 173 5/4/2022
1.0.12 173 5/4/2022
1.0.11 160 5/4/2022
1.0.10 179 5/4/2022
1.0.9 185 5/4/2022
1.0.8 173 5/4/2022
1.0.7 183 5/4/2022
1.0.6 191 5/4/2022
1.0.5 174 5/4/2022
1.0.4 175 5/4/2022
1.0.3 175 5/4/2022
1.0.2 168 5/4/2022

⭐ Last 10 features:
- feat: Added personal token to CI. 2022-05-04
- feat: Initial commit. 2022-04-29

🐞 Last 10 bug fixes:
- fix: Fixed CI. 2022-04-29