Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
ssnyder-intrinio committed Jan 28, 2022
1 parent c8e61a2 commit c765968
Show file tree
Hide file tree
Showing 18 changed files with 108 additions and 55 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ To get an API key, [sign up here](https://intrinio.com/).

Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.

- API version: 2.26.12
- Package version: 5.18.0
- API version: 2.27.2
- Package version: 5.19.0


<a name="frameworks-supported"></a>
Expand Down
6 changes: 4 additions & 2 deletions docs/CompanyApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1202,7 +1202,7 @@ Name | Type | Description | Notes

[//]: # (START_OVERVIEW)

> ApiResponseInsiderTransactionFilings InsiderTransactionFilingsByCompany (string identifier, DateTime? startDate = null, DateTime? endDate = null, string ownershipType = null, int? pageSize = null, string nextPage = null)
> ApiResponseInsiderTransactionFilings InsiderTransactionFilingsByCompany (string identifier, DateTime? startDate = null, DateTime? endDate = null, string ownershipType = null, int? pageSize = null, string sortBy = null, string nextPage = null)
#### Insider Transaction Filings by Company

Expand Down Expand Up @@ -1240,9 +1240,10 @@ namespace Example
DateTime? endDate = DateTime.Parse("2019-01-01");
string ownershipType = "D";
int? pageSize = 100;
string sortBy = "updated_on";
string nextPage = null;

ApiResponseInsiderTransactionFilings result = companyApi.InsiderTransactionFilingsByCompany(identifier, startDate, endDate, ownershipType, pageSize, nextPage);
ApiResponseInsiderTransactionFilings result = companyApi.InsiderTransactionFilingsByCompany(identifier, startDate, endDate, ownershipType, pageSize, sortBy, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
Expand All @@ -1263,6 +1264,7 @@ Name | Type | Description | Notes
**endDate** | DateTime?| Return Company&#39;s insider transaction filings on or before this date | [optional] &nbsp;
**ownershipType** | string| The type of ownership to return transaction filings for. &#39;D&#39; is for direct transactions. &#39;I&#39; is for indirect transactions. Omit for both types. | [optional] &nbsp;
**pageSize** | int?| The number of results to return | [optional] [default to 100] &nbsp;
**sortBy** | string| The field to sort by. Default is &#39;filing_date&#39;. Valid values are - &#39;filing_date&#39;, &#39;updated_on&#39;. | [optional] &nbsp;
**nextPage** | string| Gets the next page of data from a previous API call | [optional] &nbsp;
<br/>

Expand Down
1 change: 1 addition & 0 deletions docs/ETFAnalytics.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

Name | Type | Description
------------ | ------------- | -------------
**Date** | DateTime? | The calendar date these analytics represent. &nbsp;
**FiftyTwoWeekHigh** | decimal? | Highest trading price for the security in the preceding 52 weeks &nbsp;
**FiftyTwoWeekLow** | decimal? | Lowest trading price for the security in the preceding 52 weeks &nbsp;
**VolumeTraded** | decimal? | The total quantity of shares traded on the latest trading day &nbsp;
Expand Down
6 changes: 4 additions & 2 deletions docs/InsiderTransactionFilingsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Method | HTTP request | Description

[//]: # (START_OVERVIEW)

> ApiResponseOwnerInsiderTransactionFilings GetAllInsiderTransactionFilings (DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string nextPage = null)
> ApiResponseOwnerInsiderTransactionFilings GetAllInsiderTransactionFilings (DateTime? startDate = null, DateTime? endDate = null, int? pageSize = null, string sortBy = null, string nextPage = null)
#### All Insider Transactions Filings

Expand Down Expand Up @@ -69,9 +69,10 @@ namespace Example
DateTime? startDate = DateTime.Parse("2015-01-01");
DateTime? endDate = null;
int? pageSize = 100;
string sortBy = "updated_on";
string nextPage = null;

ApiResponseOwnerInsiderTransactionFilings result = insiderTransactionFilingsApi.GetAllInsiderTransactionFilings(startDate, endDate, pageSize, nextPage);
ApiResponseOwnerInsiderTransactionFilings result = insiderTransactionFilingsApi.GetAllInsiderTransactionFilings(startDate, endDate, pageSize, sortBy, nextPage);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
Expand All @@ -90,6 +91,7 @@ Name | Type | Description | Notes
**startDate** | DateTime?| Filed on or after the given date | [optional] &nbsp;
**endDate** | DateTime?| Filed before or after the given date | [optional] &nbsp;
**pageSize** | int?| The number of results to return | [optional] [default to 100] &nbsp;
**sortBy** | string| The field to sort by. Default is &#39;filing_date&#39;. Valid values are - &#39;filing_date&#39;, &#39;updated_on&#39;. | [optional] &nbsp;
**nextPage** | string| Gets the next page of data from a previous API call | [optional] &nbsp;
<br/>

Expand Down
2 changes: 1 addition & 1 deletion docs/OptionChainEod.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Name | Type | Description
------------ | ------------- | -------------
**Option** | [**OptionEod**](OptionEod.md) | &nbsp;
**Prices** | [**OptionPriceEod**](OptionPriceEod.md) | &nbsp;
**Price** | [**OptionPriceEod**](OptionPriceEod.md) | &nbsp;

[//]: # (END_DEFINITION)

Expand Down
3 changes: 2 additions & 1 deletion src/Intrinio.SDK.Test/Api/CompanyApiTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,9 @@ public void InsiderTransactionFilingsByCompanyTest()
//DateTime? endDate = null;
//string ownershipType = null;
//int? pageSize = null;
//string sortBy = null;
//string nextPage = null;
//var response = instance.InsiderTransactionFilingsByCompany(identifier, startDate, endDate, ownershipType, pageSize, nextPage);
//var response = instance.InsiderTransactionFilingsByCompany(identifier, startDate, endDate, ownershipType, pageSize, sortBy, nextPage);
//Assert.IsInstanceOf<ApiResponseInsiderTransactionFilings> (response, "response is ApiResponseInsiderTransactionFilings");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ public void GetAllInsiderTransactionFilingsTest()
//DateTime? startDate = null;
//DateTime? endDate = null;
//int? pageSize = null;
//string sortBy = null;
//string nextPage = null;
//var response = instance.GetAllInsiderTransactionFilings(startDate, endDate, pageSize, nextPage);
//var response = instance.GetAllInsiderTransactionFilings(startDate, endDate, pageSize, sortBy, nextPage);
//Assert.IsInstanceOf<ApiResponseOwnerInsiderTransactionFilings> (response, "response is ApiResponseOwnerInsiderTransactionFilings");
}

Expand Down
2 changes: 1 addition & 1 deletion src/Intrinio.SDK.Test/Intrinio.SDK.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Intrinio API
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://docs.intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.
OpenAPI spec version: 2.26.12
OpenAPI spec version: 2.27.2
-->
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
Expand Down
8 changes: 8 additions & 0 deletions src/Intrinio.SDK.Test/Model/ETFAnalyticsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ public void ETFAnalyticsInstanceTest()
}


/// <summary>
/// Test the property 'Date'
/// </summary>
[Test]
public void DateTest()
{
// TODO unit test for the property 'Date'
}
/// <summary>
/// Test the property 'FiftyTwoWeekHigh'
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions src/Intrinio.SDK.Test/Model/OptionChainEodTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ public void OptionTest()
// TODO unit test for the property 'Option'
}
/// <summary>
/// Test the property 'Prices'
/// Test the property 'Price'
/// </summary>
[Test]
public void PricesTest()
public void PriceTest()
{
// TODO unit test for the property 'Prices'
// TODO unit test for the property 'Price'
}

}
Expand Down
Loading

0 comments on commit c765968

Please sign in to comment.