diff --git a/docs/SecurityApi.md b/docs/SecurityApi.md index aeb3f1f..8a45722 100644 --- a/docs/SecurityApi.md +++ b/docs/SecurityApi.md @@ -1123,7 +1123,7 @@ Name | Type | Description | Notes [//]: # (START_OVERVIEW) -> ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null) +> ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null) #### Interval Stock Prices for Security @@ -1165,9 +1165,10 @@ namespace Example string endTime = null; string timezone = "UTC"; int? pageSize = 100; + bool? splitAdjusted = false; string nextPage = null; - ApiResponseSecurityIntervalPrices result = securityApi.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, nextPage); + ApiResponseSecurityIntervalPrices result = securityApi.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, splitAdjusted, nextPage); Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented)); } } @@ -1192,6 +1193,7 @@ Name | Type | Description | Notes **endTime** | string| Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) | [optional]   **timezone** | string| Returns trading times in this timezone | [optional] [default to UTC]   **pageSize** | int?| The number of results to return | [optional] [default to 100]   + **splitAdjusted** | bool?| Whether to return the values adjusted for splits or not. Default is false. | [optional] [default to false]   **nextPage** | string| Gets the next page of data from a previous API call | [optional]  
diff --git a/docs/StockExchangeApi.md b/docs/StockExchangeApi.md index 06706c3..945fd29 100644 --- a/docs/StockExchangeApi.md +++ b/docs/StockExchangeApi.md @@ -408,7 +408,7 @@ Name | Type | Description | Notes [//]: # (START_OVERVIEW) -> ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null) +> ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null) #### Realtime Stock Prices by Exchange @@ -445,9 +445,10 @@ namespace Example string source = null; bool? activeOnly = null; int? pageSize = 100; + var tickers = new List(); string nextPage = null; - ApiResponseStockExchangeRealtimeStockPrices result = stockExchangeApi.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, nextPage); + ApiResponseStockExchangeRealtimeStockPrices result = stockExchangeApi.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, tickers, nextPage); Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented)); } } @@ -467,6 +468,7 @@ Name | Type | Description | Notes **source** | string| Return realtime prices from the specified data source. If no source is specified, all sources are used. | [optional]   **activeOnly** | bool?| Returns prices only from the most recent trading day. | [optional]   **pageSize** | int?| The number of results to return | [optional] [default to 100]   + **tickers** | [**List<string>**](string.md)| The list of ticker symbols to filter to. | [optional]   **nextPage** | string| Gets the next page of data from a previous API call | [optional]  
diff --git a/src/Intrinio.SDK.Test/Api/SecurityApiTests.cs b/src/Intrinio.SDK.Test/Api/SecurityApiTests.cs index 18b8f4e..80f1317 100644 --- a/src/Intrinio.SDK.Test/Api/SecurityApiTests.cs +++ b/src/Intrinio.SDK.Test/Api/SecurityApiTests.cs @@ -232,8 +232,9 @@ public void GetSecurityIntervalPricesTest() //string endTime = null; //string timezone = null; //int? pageSize = null; + //bool? splitAdjusted = null; //string nextPage = null; - //var response = instance.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, nextPage); + //var response = instance.GetSecurityIntervalPrices(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, splitAdjusted, nextPage); //Assert.IsInstanceOf (response, "response is ApiResponseSecurityIntervalPrices"); } diff --git a/src/Intrinio.SDK.Test/Api/StockExchangeApiTests.cs b/src/Intrinio.SDK.Test/Api/StockExchangeApiTests.cs index 044cff8..c69af05 100644 --- a/src/Intrinio.SDK.Test/Api/StockExchangeApiTests.cs +++ b/src/Intrinio.SDK.Test/Api/StockExchangeApiTests.cs @@ -120,8 +120,9 @@ public void GetStockExchangeRealtimePricesTest() //string source = null; //bool? activeOnly = null; //int? pageSize = null; + //List tickers = null; //string nextPage = null; - //var response = instance.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, nextPage); + //var response = instance.GetStockExchangeRealtimePrices(identifier, source, activeOnly, pageSize, tickers, nextPage); //Assert.IsInstanceOf (response, "response is ApiResponseStockExchangeRealtimeStockPrices"); } diff --git a/src/Intrinio.SDK/Api/SecurityApi.cs b/src/Intrinio.SDK/Api/SecurityApi.cs index d95d952..4804862 100644 --- a/src/Intrinio.SDK/Api/SecurityApi.cs +++ b/src/Intrinio.SDK/Api/SecurityApi.cs @@ -328,9 +328,10 @@ public interface ISecurityApi : IApiAccessor /// Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// ApiResponseSecurityIntervalPrices - ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null); + ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null); /// /// Interval Stock Prices for Security @@ -348,9 +349,10 @@ public interface ISecurityApi : IApiAccessor /// Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// ApiResponse of ApiResponseSecurityIntervalPrices - ApiResponse GetSecurityIntervalPricesWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null); + ApiResponse GetSecurityIntervalPricesWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null); /// /// Intraday Stock Prices for Security /// @@ -2137,9 +2139,10 @@ public interface ISecurityApi : IApiAccessor /// Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponseSecurityIntervalPrices - System.Threading.Tasks.Task GetSecurityIntervalPricesAsync (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null); + System.Threading.Tasks.Task GetSecurityIntervalPricesAsync (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null); /// /// Interval Stock Prices for Security @@ -2157,9 +2160,10 @@ public interface ISecurityApi : IApiAccessor /// Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponse (ApiResponseSecurityIntervalPrices) - System.Threading.Tasks.Task> GetSecurityIntervalPricesAsyncWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null); + System.Threading.Tasks.Task> GetSecurityIntervalPricesAsyncWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null); /// /// Intraday Stock Prices for Security /// @@ -5549,11 +5553,12 @@ public async System.Threading.Tasks.TaskReturn intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// ApiResponseSecurityIntervalPrices - public ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null) + public ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null) { - ApiResponse localVarResponse = GetSecurityIntervalPricesWithHttpInfo(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, nextPage); + ApiResponse localVarResponse = GetSecurityIntervalPricesWithHttpInfo(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, splitAdjusted, nextPage); return localVarResponse.Data; } @@ -5570,11 +5575,12 @@ public ApiResponseSecurityIntervalPrices GetSecurityIntervalPrices (string ident /// Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// ApiResponse of ApiResponseSecurityIntervalPrices - public ApiResponse< ApiResponseSecurityIntervalPrices > GetSecurityIntervalPricesWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null) + public ApiResponse< ApiResponseSecurityIntervalPrices > GetSecurityIntervalPricesWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null) { // verify the required parameter 'identifier' is set if (identifier == null) @@ -5614,6 +5620,7 @@ public ApiResponse< ApiResponseSecurityIntervalPrices > GetSecurityIntervalPrice if (timezone != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "timezone", timezone)); // query parameter if (intervalSize != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "interval_size", intervalSize)); // query parameter if (pageSize != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "page_size", pageSize)); // query parameter + if (splitAdjusted != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "split_adjusted", splitAdjusted)); // query parameter if (nextPage != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "next_page", nextPage)); // query parameter // authentication (ApiKeyAuth) required @@ -5653,11 +5660,12 @@ public ApiResponse< ApiResponseSecurityIntervalPrices > GetSecurityIntervalPrice /// Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponseSecurityIntervalPrices - public async System.Threading.Tasks.Task GetSecurityIntervalPricesAsync (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null) + public async System.Threading.Tasks.Task GetSecurityIntervalPricesAsync (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null) { - ApiResponse localVarResponse = await GetSecurityIntervalPricesAsyncWithHttpInfo(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, nextPage); + ApiResponse localVarResponse = await GetSecurityIntervalPricesAsyncWithHttpInfo(identifier, intervalSize, source, startDate, startTime, endDate, endTime, timezone, pageSize, splitAdjusted, nextPage); return localVarResponse.Data; } @@ -5675,9 +5683,10 @@ public async System.Threading.Tasks.Task GetS /// Return intervals stopping at the specified time on the `end_date` (24-hour in 'hh:mm:ss' format) (optional) /// Returns trading times in this timezone (optional, default to UTC) /// The number of results to return (optional, default to 100) + /// Whether to return the values adjusted for splits or not. Default is false. (optional, default to false) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponse (ApiResponseSecurityIntervalPrices) - public async System.Threading.Tasks.Task> GetSecurityIntervalPricesAsyncWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, string nextPage = null) + public async System.Threading.Tasks.Task> GetSecurityIntervalPricesAsyncWithHttpInfo (string identifier, string intervalSize, string source = null, DateTime? startDate = null, string startTime = null, DateTime? endDate = null, string endTime = null, string timezone = null, int? pageSize = null, bool? splitAdjusted = null, string nextPage = null) { // verify the required parameter 'identifier' is set if (identifier == null) @@ -5717,6 +5726,7 @@ public async System.Threading.Tasks.TaskReturn realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// ApiResponseStockExchangeRealtimeStockPrices - ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null); + ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null); /// /// Realtime Stock Prices by Exchange @@ -145,9 +146,10 @@ public interface IStockExchangeApi : IApiAccessor /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// ApiResponse of ApiResponseStockExchangeRealtimeStockPrices - ApiResponse GetStockExchangeRealtimePricesWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null); + ApiResponse GetStockExchangeRealtimePricesWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null); /// /// Securities by Exchange /// @@ -288,9 +290,10 @@ public interface IStockExchangeApi : IApiAccessor /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponseStockExchangeRealtimeStockPrices - System.Threading.Tasks.Task GetStockExchangeRealtimePricesAsync (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null); + System.Threading.Tasks.Task GetStockExchangeRealtimePricesAsync (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null); /// /// Realtime Stock Prices by Exchange @@ -303,9 +306,10 @@ public interface IStockExchangeApi : IApiAccessor /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponse (ApiResponseStockExchangeRealtimeStockPrices) - System.Threading.Tasks.Task> GetStockExchangeRealtimePricesAsyncWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null); + System.Threading.Tasks.Task> GetStockExchangeRealtimePricesAsyncWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null); /// /// Securities by Exchange /// @@ -1075,11 +1079,12 @@ public async System.Threading.Tasks.TaskReturn realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// ApiResponseStockExchangeRealtimeStockPrices - public ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null) + public ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrices (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null) { - ApiResponse localVarResponse = GetStockExchangeRealtimePricesWithHttpInfo(identifier, source, activeOnly, pageSize, nextPage); + ApiResponse localVarResponse = GetStockExchangeRealtimePricesWithHttpInfo(identifier, source, activeOnly, pageSize, tickers, nextPage); return localVarResponse.Data; } @@ -1091,11 +1096,12 @@ public ApiResponseStockExchangeRealtimeStockPrices GetStockExchangeRealtimePrice /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// ApiResponse of ApiResponseStockExchangeRealtimeStockPrices - public ApiResponse< ApiResponseStockExchangeRealtimeStockPrices > GetStockExchangeRealtimePricesWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null) + public ApiResponse< ApiResponseStockExchangeRealtimeStockPrices > GetStockExchangeRealtimePricesWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null) { // verify the required parameter 'identifier' is set if (identifier == null) @@ -1127,6 +1133,7 @@ public ApiResponse< ApiResponseStockExchangeRealtimeStockPrices > GetStockExchan if (source != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "source", source)); // query parameter if (activeOnly != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "active_only", activeOnly)); // query parameter if (pageSize != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "page_size", pageSize)); // query parameter + if (tickers != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("csv", "tickers", tickers)); // query parameter if (nextPage != null) localVarQueryParams.AddRange(Configuration.ApiClient.ParameterToKeyValuePairs("", "next_page", nextPage)); // query parameter // authentication (ApiKeyAuth) required @@ -1161,11 +1168,12 @@ public ApiResponse< ApiResponseStockExchangeRealtimeStockPrices > GetStockExchan /// Return realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponseStockExchangeRealtimeStockPrices - public async System.Threading.Tasks.Task GetStockExchangeRealtimePricesAsync (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null) + public async System.Threading.Tasks.Task GetStockExchangeRealtimePricesAsync (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null) { - ApiResponse localVarResponse = await GetStockExchangeRealtimePricesAsyncWithHttpInfo(identifier, source, activeOnly, pageSize, nextPage); + ApiResponse localVarResponse = await GetStockExchangeRealtimePricesAsyncWithHttpInfo(identifier, source, activeOnly, pageSize, tickers, nextPage); return localVarResponse.Data; } @@ -1178,9 +1186,10 @@ public async System.Threading.Tasks.TaskReturn realtime prices from the specified data source. If no source is specified, all sources are used. (optional) /// Returns prices only from the most recent trading day. (optional) /// The number of results to return (optional, default to 100) + /// The list of ticker symbols to filter to. (optional) /// Gets the next page of data from a previous API call (optional) /// Task of ApiResponse (ApiResponseStockExchangeRealtimeStockPrices) - public async System.Threading.Tasks.Task> GetStockExchangeRealtimePricesAsyncWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, string nextPage = null) + public async System.Threading.Tasks.Task> GetStockExchangeRealtimePricesAsyncWithHttpInfo (string identifier, string source = null, bool? activeOnly = null, int? pageSize = null, List tickers = null, string nextPage = null) { // verify the required parameter 'identifier' is set if (identifier == null) @@ -1212,6 +1221,7 @@ public async System.Threading.Tasks.Task