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 Nov 27, 2024
1 parent b6a7d95 commit 069edd5
Show file tree
Hide file tree
Showing 23 changed files with 918 additions and 37 deletions.
7 changes: 5 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.75.0
- Package version: 6.26.0
- API version: 2.76.3
- Package version: 6.27.0


## Installation
Expand Down Expand Up @@ -262,6 +262,7 @@ Class | Method | HTTP request | Description
*SecurityApi* | [**screenSecurities**](docs/SecurityApi.md#screenSecurities) | **POST** /securities/screen | Screen Securities
*SecurityApi* | [**searchSecurities**](docs/SecurityApi.md#searchSecurities) | **GET** /securities/search | Search Securities
*StockExchangeApi* | [**getAllStockExchanges**](docs/StockExchangeApi.md#getAllStockExchanges) | **GET** /stock_exchanges | All Stock Exchanges
*StockExchangeApi* | [**getStockExchangeBetas**](docs/StockExchangeApi.md#getStockExchangeBetas) | **GET** /stock_exchanges/{identifier}/betas | Security Betas
*StockExchangeApi* | [**getStockExchangeById**](docs/StockExchangeApi.md#getStockExchangeById) | **GET** /stock_exchanges/{identifier} | Lookup Stock Exchange
*StockExchangeApi* | [**getStockExchangeGainers**](docs/StockExchangeApi.md#getStockExchangeGainers) | **GET** /stock_exchanges/{identifier}/gainers | Top Gainers by Exchange
*StockExchangeApi* | [**getStockExchangeLosers**](docs/StockExchangeApi.md#getStockExchangeLosers) | **GET** /stock_exchanges/{identifier}/losers | Top Losers by Exchange
Expand Down Expand Up @@ -437,6 +438,7 @@ Class | Method | HTTP request | Description
- [ApiResponseSecurityZacksSalesSurprises](docs/ApiResponseSecurityZacksSalesSurprises.md)
- [ApiResponseStandardizedFinancials](docs/ApiResponseStandardizedFinancials.md)
- [ApiResponseStandardizedFinancialsDimensions](docs/ApiResponseStandardizedFinancialsDimensions.md)
- [ApiResponseStockExchangeBetas](docs/ApiResponseStockExchangeBetas.md)
- [ApiResponseStockExchangeMovers](docs/ApiResponseStockExchangeMovers.md)
- [ApiResponseStockExchangeQuote](docs/ApiResponseStockExchangeQuote.md)
- [ApiResponseStockExchangeRealtimeStockPrices](docs/ApiResponseStockExchangeRealtimeStockPrices.md)
Expand Down Expand Up @@ -465,6 +467,7 @@ Class | Method | HTTP request | Description
- [AverageDirectionalIndexTechnicalValue](docs/AverageDirectionalIndexTechnicalValue.md)
- [AverageTrueRangeTechnicalValue](docs/AverageTrueRangeTechnicalValue.md)
- [AwesomeOscillatorTechnicalValue](docs/AwesomeOscillatorTechnicalValue.md)
- [Beta](docs/Beta.md)
- [BollingerBandsTechnicalValue](docs/BollingerBandsTechnicalValue.md)
- [BulkDownloadLinks](docs/BulkDownloadLinks.md)
- [BulkDownloadSummary](docs/BulkDownloadSummary.md)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.intrinio'
version = '6.26.0'
version = '6.27.0'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.intrinio",
name := "intrinio-sdk",
version := "6.26.0",
version := "6.27.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
29 changes: 29 additions & 0 deletions docs/ApiResponseStockExchangeBetas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

[//]: # (CLASS:ApiResponseStockExchangeBetas)

[//]: # (KIND:object)

### ApiResponseStockExchangeBetas

#### Properties

[//]: # (START_DEFINITION)

Name | Type | Description
------------ | ------------- | -------------
**betas** | [**List<Beta>**](Beta.md) | The mover security.  
**stockExchange** | [**StockExchange**](StockExchange.md) | The Stock Exchange resolved from the given identifier  
**nextPage** | String | The token required to request the next page of the data. If null, no further results are available.  

[//]: # (END_DEFINITION)


[//]: # (CONTAINED_CLASS:Beta)


[//]: # (CONTAINED_CLASS:StockExchange)





54 changes: 54 additions & 0 deletions docs/Beta.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@

[//]: # (CLASS:Beta)

[//]: # (KIND:object)

### Beta

#### Properties

[//]: # (START_DEFINITION)

Name | Type | Description
------------ | ------------- | -------------
**periodType** | PeriodTypeEnum | Type of period for this beta value.  
**oneYearBeta** | [**BigDecimal**](BigDecimal.md) | The one year beta value for this security.  
**threeYearBeta** | [**BigDecimal**](BigDecimal.md) | The three year beta value for this security.  
**fiveYearBeta** | [**BigDecimal**](BigDecimal.md) | The five year beta value for this security.  
**sevenYearBeta** | [**BigDecimal**](BigDecimal.md) | The seven year beta value for this security.  
**tenYearBeta** | [**BigDecimal**](BigDecimal.md) | The ten year beta value for this security.  
**security** | [**SecuritySummary**](SecuritySummary.md) | The Security.  

[//]: # (END_DEFINITION)


[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:SecuritySummary)



<br/>

#### Enum: PeriodTypeEnum

Name | Value
---- | -----
WEEKLY | &quot;weekly&quot;
MONTHLY | &quot;monthly&quot;



6 changes: 5 additions & 1 deletion docs/OptionInterval.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ Name | Type | Description
**high** | [**BigDecimal**](BigDecimal.md) | The highest traded contract price in this interval. &nbsp;
**low** | [**BigDecimal**](BigDecimal.md) | The lowest traded contract price in this interval. &nbsp;
**close** | [**BigDecimal**](BigDecimal.md) | The last traded contract price in this interval. &nbsp;
**volume** | [**BigDecimal**](BigDecimal.md) | The volume of contract trades in this interval. &nbsp;
**volume** | [**BigDecimal**](BigDecimal.md) | The volume of contracts traded in this interval. &nbsp;
**average** | [**BigDecimal**](BigDecimal.md) | The volume weighted average price of contract trades in this interval. &nbsp;
**change** | [**BigDecimal**](BigDecimal.md) | The ratio of Close minus Open to Open. &nbsp;
**tradeCount** | [**BigDecimal**](BigDecimal.md) | The number of qualified trades executed during the period &nbsp;

[//]: # (END_DEFINITION)

Expand Down Expand Up @@ -51,6 +52,9 @@ Name | Type | Description
[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)





6 changes: 5 additions & 1 deletion docs/OptionIntervalMover.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ Name | Type | Description
**high** | [**BigDecimal**](BigDecimal.md) | The highest traded contract price in this interval. &nbsp;
**low** | [**BigDecimal**](BigDecimal.md) | The lowest traded contract price in this interval. &nbsp;
**close** | [**BigDecimal**](BigDecimal.md) | The last traded contract price in this interval. &nbsp;
**volume** | [**BigDecimal**](BigDecimal.md) | The volume of contract trades in this interval. &nbsp;
**volume** | [**BigDecimal**](BigDecimal.md) | The volume of contracts traded in this interval. &nbsp;
**average** | [**BigDecimal**](BigDecimal.md) | The volume weighted average price of contract trades in this interval. &nbsp;
**tradeCount** | [**BigDecimal**](BigDecimal.md) | The number of contract trades executed in this interval &nbsp;

[//]: # (END_DEFINITION)

Expand All @@ -44,6 +45,9 @@ Name | Type | Description
[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)





10 changes: 7 additions & 3 deletions docs/OptionsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Method | HTTP request | Description

[//]: # (START_OVERVIEW)

> ApiResponseOptionsTickers getAllOptionsTickers()
> ApiResponseOptionsTickers getAllOptionsTickers(useUnderlyingSymbols)
#### Options Tickers

Expand Down Expand Up @@ -92,7 +92,8 @@ public class Main {
defaultClient.setAllowRetries(true);

OptionsApi optionsApi = new OptionsApi();
ApiResponseOptionsTickers result = optionsApi.getAllOptionsTickers();
Boolean useUnderlyingSymbols = false;
ApiResponseOptionsTickers result = optionsApi.getAllOptionsTickers(useUnderlyingSymbols);
System.out.println(result);
}
}
Expand All @@ -104,7 +105,10 @@ public class Main {

[//]: # (START_PARAMETERS)

This endpoint does not need any parameter.

Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**useUnderlyingSymbols** | Boolean| Use underlying symbol vs contract symbol | [optional] [default to false] &nbsp;
<br/>

[//]: # (END_PARAMETERS)
Expand Down
6 changes: 5 additions & 1 deletion docs/SecurityIntervalMover.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ Name | Type | Description
**high** | [**BigDecimal**](BigDecimal.md) | The highest traded price in this interval. &nbsp;
**low** | [**BigDecimal**](BigDecimal.md) | The lowest traded price in this interval. &nbsp;
**close** | [**BigDecimal**](BigDecimal.md) | The last traded price in this interval. &nbsp;
**volume** | [**BigDecimal**](BigDecimal.md) | The volume of trades in this interval. &nbsp;
**volume** | [**BigDecimal**](BigDecimal.md) | The volume of shares in this interval. &nbsp;
**average** | [**BigDecimal**](BigDecimal.md) | The volume weighted average price of trades in this interval. &nbsp;
**tradeCount** | [**BigDecimal**](BigDecimal.md) | The of trades in this interval. &nbsp;

[//]: # (END_DEFINITION)

Expand All @@ -44,6 +45,9 @@ Name | Type | Description
[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)





93 changes: 93 additions & 0 deletions docs/StockExchangeApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All URIs are relative to *https://api-v2.intrinio.com*
Method | HTTP request | Description
------------- | ------------- | -------------
[**getAllStockExchanges**](StockExchangeApi.md#getAllStockExchanges) | **GET** /stock_exchanges | All Stock Exchanges
[**getStockExchangeBetas**](StockExchangeApi.md#getStockExchangeBetas) | **GET** /stock_exchanges/{identifier}/betas | Security Betas
[**getStockExchangeById**](StockExchangeApi.md#getStockExchangeById) | **GET** /stock_exchanges/{identifier} | Lookup Stock Exchange
[**getStockExchangeGainers**](StockExchangeApi.md#getStockExchangeGainers) | **GET** /stock_exchanges/{identifier}/gainers | Top Gainers by Exchange
[**getStockExchangeLosers**](StockExchangeApi.md#getStockExchangeLosers) | **GET** /stock_exchanges/{identifier}/losers | Top Losers by Exchange
Expand Down Expand Up @@ -106,6 +107,98 @@ Name | Type | Description | Notes
[//]: # (END_OPERATION)


[//]: # (START_OPERATION)

[//]: # (CLASS:StockExchangeApi)

[//]: # (METHOD:getStockExchangeBetas)

[//]: # (RETURN_TYPE:ApiResponseStockExchangeBetas)

[//]: # (RETURN_TYPE_KIND:object)

[//]: # (RETURN_TYPE_DOC:ApiResponseStockExchangeBetas.md)

[//]: # (OPERATION:getStockExchangeBetas_v2)

[//]: # (ENDPOINT:/stock_exchanges/{identifier}/betas)

[//]: # (DOCUMENT_LINK:StockExchangeApi.md#getStockExchangeBetas)

<a name="getStockExchangeBetas"></a>
## **getStockExchangeBetas**

[**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/java/getStockExchangeBetas_v2)

[//]: # (START_OVERVIEW)

> ApiResponseStockExchangeBetas getStockExchangeBetas(identifier, type, date, pageSize, nextPage)
#### Security Betas


Returns security beta data in the Stock Exchange with the given &#x60;identifier&#x60;

[//]: # (END_OVERVIEW)

### Example

[//]: # (START_CODE_EXAMPLE)

```java
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;

public class Main {
public static void main(String[] args) throws Exception {

ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);

StockExchangeApi stockExchangeApi = new StockExchangeApi();
String identifier = "USCOMP";
String type = "weekly";
Object date = "2024-04-24";
Integer pageSize = 100;
String nextPage = null;
ApiResponseStockExchangeBetas result = stockExchangeApi.getStockExchangeBetas(identifier, type, date, pageSize, nextPage);
System.out.println(result);
}
}
```

[//]: # (END_CODE_EXAMPLE)

### Parameters

[//]: # (START_PARAMETERS)


Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**identifier** | String| A Stock Exchange identifier (MIC or Intrinio ID) | &nbsp;
**type** | String| Only of the given type | [optional] [default to weekly] [enum: weekly, monthly] &nbsp;
**date** | [**Object**](.md)| Return data for this period end date. | [optional] &nbsp;
**pageSize** | Integer| The number of results to return | [optional] [default to 100] &nbsp;
**nextPage** | String| Gets the next page of data from a previous API call | [optional] &nbsp;
<br/>

[//]: # (END_PARAMETERS)

### Return type

[**ApiResponseStockExchangeBetas**](ApiResponseStockExchangeBetas.md)

[//]: # (END_OPERATION)


[//]: # (START_OPERATION)

[//]: # (CLASS:StockExchangeApi)
Expand Down
4 changes: 4 additions & 0 deletions docs/StockPriceInterval.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Name | Type | Description
**askFirstTime** | [**OffsetDateTime**](OffsetDateTime.md) | The timestamp that represents the first ask time from the interval span. &nbsp;
**askLastTime** | [**OffsetDateTime**](OffsetDateTime.md) | The timestamp that represents the last ask time from the interval span. &nbsp;
**askChangePercent** | [**BigDecimal**](BigDecimal.md) | The ratio of the close to open ask difference, in percent. &nbsp;
**tradeCount** | [**BigDecimal**](BigDecimal.md) | The number of qualified trades executed during the period &nbsp;

[//]: # (END_DEFINITION)

Expand Down Expand Up @@ -108,6 +109,9 @@ Name | Type | Description
[//]: # (CONTAINED_CLASS:BigDecimal)


[//]: # (CONTAINED_CLASS:BigDecimal)



<br/>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>intrinio-sdk</artifactId>
<packaging>jar</packaging>
<name>intrinio-sdk</name>
<version>6.26.0</version>
<version>6.27.0</version>
<url>https://github.com/intrinio/java-sdk</url>
<description>Access the Intrinio API</description>
<scm>
Expand Down
Loading

0 comments on commit 069edd5

Please sign in to comment.