docs/SecurityApi.md in intrinio-sdk-6.26.1 vs docs/SecurityApi.md in intrinio-sdk-6.26.2

- old
+ new

@@ -891,13 +891,13 @@ identifier = "AAPL" interval_size = "15m" opts = { source: nil, - start_date: Date.parse("2018-01-01"), + start_date: Date.parse("2023-01-01"), start_time: nil, - end_date: Date.parse("2019-01-01"), + end_date: Date.parse("2023-02-01"), end_time: nil, timezone: "UTC", page_size: 100, next_page: nil } @@ -4558,11 +4558,11 @@ [**View Intrinio API Documentation**](https://docs.intrinio.com/documentation/ruby/get_security_trades_by_symbol_v2) [//]: # (START_OVERVIEW) -> SecurityTradesResult get_security_trades_by_symbol(source, opts) +> SecurityTradesResult get_security_trades_by_symbol(identifier, source, opts) #### Security Trades By Symbol Returns all trades for a symbol between start time and end time, up to seven days ago for the specified source. @@ -4583,10 +4583,11 @@ config.api_key['api_key'] = 'YOUR_API_KEY' config.allow_retries = true end security_api = Intrinio::SecurityApi.new +identifier = "AAPL" source = nil opts = { start_date: nil, start_time: nil, @@ -4595,11 +4596,11 @@ timezone: "UTC", page_size: 100, next_page: nil } -result = security_api.get_security_trades_by_symbol(source, opts) +result = security_api.get_security_trades_by_symbol(identifier, source, opts) pp result ``` [//]: # (END_CODE_EXAMPLE) @@ -4610,9 +4611,10 @@ [//]: # (START_PARAMETERS) Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- + **identifier** | String| The ticker symbol for which trades are being requested. |   **source** | String| The specific source of the data being requested. |   **start_date** | Date| The start date for the data being requested. | [optional]   **start_time** | String| The start time for the data being requested. | [optional]   **end_date** | Date| The end date for the data being requested. | [optional]   **end_time** | String| The end time for the data being requested. | [optional]