-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add v3 rest client * Fix missing name property * Add scripts property for tests * Disable a few tests for debugging * Add MIT License * Update author and tweak license date * Update readme * Clean up * Update README.md
- Loading branch information
1 parent
fc7d323
commit 2ef1a9d
Showing
1,007 changed files
with
226,350 additions
and
7,164 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
# ref: https://github.com/github/gitignore/blob/master/Composer.gitignore | ||
|
||
composer.phar | ||
/vendor/ | ||
build | ||
.idea | ||
.phpunit.result.cache | ||
|
||
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control | ||
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file | ||
# composer.lock | ||
|
||
# php-cs-fixer cache | ||
.php_cs.cache | ||
.php-cs-fixer.cache | ||
|
||
# PHPUnit cache | ||
.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,41 @@ | ||
{ | ||
"name": "polygon-io/api", | ||
"description": "polygon.io php client", | ||
"description": "polygon.io php-client", | ||
"keywords": [ | ||
"openapitools", | ||
"openapi-generator", | ||
"openapi", | ||
"php", | ||
"sdk", | ||
"rest", | ||
"api" | ||
], | ||
"homepage": "https://openapi-generator.tech", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Julien Prugne", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Ersin Demirtas", | ||
"email": "[email protected]" | ||
"name": "Polygon.io, Inc.", | ||
"homepage": "https://polygon.io/" | ||
} | ||
], | ||
"require": { | ||
"php":">=7.2.5", | ||
"php": "^7.4 || ^8.0", | ||
"ext-curl": "*", | ||
"ext-json": "*", | ||
"guzzlehttp/guzzle": "^7.2.0", | ||
"amphp/websocket-client": "^0.2.4", | ||
"psr/http-client": "^1.0" | ||
"ext-mbstring": "*", | ||
"guzzlehttp/guzzle": "^7.3", | ||
"guzzlehttp/psr7": "^1.7 || ^2.0" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^8", | ||
"squizlabs/php_codesniffer": "^3.5" | ||
"phpunit/phpunit": "^8.0 || ^9.0", | ||
"friendsofphp/php-cs-fixer": "^3.5" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"PolygonIO\\": "src/" | ||
} | ||
"psr-4": { "OpenAPI\\Client\\" : "lib/" } | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"PolygonIO\\Tests\\": "tests/" | ||
} | ||
"psr-4": { "OpenAPI\\Client\\Test\\" : "test/" } | ||
}, | ||
"scripts": { | ||
"test": "./vendor/bin/phpunit" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,262 @@ | ||
# OpenAPI\Client\CrpytoaggregatesApi | ||
|
||
All URIs are relative to https://api.polygon.io, except if the operation defines another base path. | ||
|
||
| Method | HTTP request | Description | | ||
| ------------- | ------------- | ------------- | | ||
| [**cryptoEMA()**](CrpytoaggregatesApi.md#cryptoEMA) | **GET** /v1/indicators/ema/{cryptoTicker} | Exponential Moving Average (EMA) | | ||
| [**cryptoRSI()**](CrpytoaggregatesApi.md#cryptoRSI) | **GET** /v1/indicators/rsi/{cryptoTicker} | Relative Strength Index (RSI) | | ||
| [**cryptoSMA()**](CrpytoaggregatesApi.md#cryptoSMA) | **GET** /v1/indicators/sma/{cryptoTicker} | Simple Moving Average (SMA) | | ||
|
||
|
||
## `cryptoEMA()` | ||
|
||
```php | ||
cryptoEMA($crypto_ticker, $timestamp, $timespan, $window, $series_type, $expand_underlying, $order, $limit, $timestamp_gte, $timestamp_gt, $timestamp_lte, $timestamp_lt): \OpenAPI\Client\Model\CryptoEMA200Response | ||
``` | ||
|
||
Exponential Moving Average (EMA) | ||
|
||
Get the exponential moving average (EMA) for a ticker symbol over a given time range. | ||
|
||
### Example | ||
|
||
```php | ||
<?php | ||
require_once(__DIR__ . '/vendor/autoload.php'); | ||
|
||
|
||
// Configure API key authorization: apiKey | ||
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('apiKey', 'YOUR_API_KEY'); | ||
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed | ||
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apiKey', 'Bearer'); | ||
|
||
|
||
$apiInstance = new OpenAPI\Client\Api\CrpytoaggregatesApi( | ||
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. | ||
// This is optional, `GuzzleHttp\Client` will be used as default. | ||
new GuzzleHttp\Client(), | ||
$config | ||
); | ||
$crypto_ticker = X:BTCUSD; // string | The ticker symbol for which to get exponential moving average (EMA) data. | ||
$timestamp = 'timestamp_example'; // string | Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. | ||
$timespan = day; // string | The size of the aggregate time window. | ||
$window = 50; // int | The window size used to calculate the exponential moving average (EMA). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. | ||
$series_type = close; // string | The price in the aggregate which will be used to calculate the exponential moving average. i.e. 'close' will result in using close prices to calculate the exponential moving average (EMA). | ||
$expand_underlying = false; // bool | Whether or not to include the aggregates used to calculate this indicator in the response. | ||
$order = desc; // string | The order in which to return the results, ordered by timestamp. | ||
$limit = 10; // int | Limit the number of results returned, default is 10 and max is 5000 | ||
$timestamp_gte = 'timestamp_gte_example'; // string | Range by timestamp. | ||
$timestamp_gt = 'timestamp_gt_example'; // string | Range by timestamp. | ||
$timestamp_lte = 'timestamp_lte_example'; // string | Range by timestamp. | ||
$timestamp_lt = 'timestamp_lt_example'; // string | Range by timestamp. | ||
|
||
try { | ||
$result = $apiInstance->cryptoEMA($crypto_ticker, $timestamp, $timespan, $window, $series_type, $expand_underlying, $order, $limit, $timestamp_gte, $timestamp_gt, $timestamp_lte, $timestamp_lt); | ||
print_r($result); | ||
} catch (Exception $e) { | ||
echo 'Exception when calling CrpytoaggregatesApi->cryptoEMA: ', $e->getMessage(), PHP_EOL; | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
| Name | Type | Description | Notes | | ||
| ------------- | ------------- | ------------- | ------------- | | ||
| **crypto_ticker** | **string**| The ticker symbol for which to get exponential moving average (EMA) data. | | | ||
| **timestamp** | **string**| Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. | [optional] | | ||
| **timespan** | **string**| The size of the aggregate time window. | [optional] [default to 'day'] | | ||
| **window** | **int**| The window size used to calculate the exponential moving average (EMA). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. | [optional] [default to 50] | | ||
| **series_type** | **string**| The price in the aggregate which will be used to calculate the exponential moving average. i.e. 'close' will result in using close prices to calculate the exponential moving average (EMA). | [optional] [default to 'close'] | | ||
| **expand_underlying** | **bool**| Whether or not to include the aggregates used to calculate this indicator in the response. | [optional] [default to false] | | ||
| **order** | **string**| The order in which to return the results, ordered by timestamp. | [optional] [default to 'desc'] | | ||
| **limit** | **int**| Limit the number of results returned, default is 10 and max is 5000 | [optional] [default to 10] | | ||
| **timestamp_gte** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_gt** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_lte** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_lt** | **string**| Range by timestamp. | [optional] | | ||
|
||
### Return type | ||
|
||
[**\OpenAPI\Client\Model\CryptoEMA200Response**](../Model/CryptoEMA200Response.md) | ||
|
||
### Authorization | ||
|
||
[apiKey](../../README.md#apiKey) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: Not defined | ||
- **Accept**: `application/json`, `text/csv` | ||
|
||
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) | ||
[[Back to Model list]](../../README.md#models) | ||
[[Back to README]](../../README.md) | ||
|
||
## `cryptoRSI()` | ||
|
||
```php | ||
cryptoRSI($crypto_ticker, $timestamp, $timespan, $window, $series_type, $expand_underlying, $order, $limit, $timestamp_gte, $timestamp_gt, $timestamp_lte, $timestamp_lt): \OpenAPI\Client\Model\CryptoRSI200Response | ||
``` | ||
|
||
Relative Strength Index (RSI) | ||
|
||
Get the relative strength index (RSI) for a ticker symbol over a given time range. | ||
|
||
### Example | ||
|
||
```php | ||
<?php | ||
require_once(__DIR__ . '/vendor/autoload.php'); | ||
|
||
|
||
// Configure API key authorization: apiKey | ||
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('apiKey', 'YOUR_API_KEY'); | ||
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed | ||
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apiKey', 'Bearer'); | ||
|
||
|
||
$apiInstance = new OpenAPI\Client\Api\CrpytoaggregatesApi( | ||
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. | ||
// This is optional, `GuzzleHttp\Client` will be used as default. | ||
new GuzzleHttp\Client(), | ||
$config | ||
); | ||
$crypto_ticker = X:BTCUSD; // string | The ticker symbol for which to get relative strength index (RSI) data. | ||
$timestamp = 'timestamp_example'; // string | Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. | ||
$timespan = day; // string | The size of the aggregate time window. | ||
$window = 14; // int | The window size used to calculate the relative strength index (RSI). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. | ||
$series_type = close; // string | The price in the aggregate which will be used to calculate the relative strength index. i.e. 'close' will result in using close prices to calculate the relative strength index (RSI). | ||
$expand_underlying = false; // bool | Whether or not to include the aggregates used to calculate this indicator in the response. | ||
$order = desc; // string | The order in which to return the results, ordered by timestamp. | ||
$limit = 10; // int | Limit the number of results returned, default is 10 and max is 5000 | ||
$timestamp_gte = 'timestamp_gte_example'; // string | Range by timestamp. | ||
$timestamp_gt = 'timestamp_gt_example'; // string | Range by timestamp. | ||
$timestamp_lte = 'timestamp_lte_example'; // string | Range by timestamp. | ||
$timestamp_lt = 'timestamp_lt_example'; // string | Range by timestamp. | ||
|
||
try { | ||
$result = $apiInstance->cryptoRSI($crypto_ticker, $timestamp, $timespan, $window, $series_type, $expand_underlying, $order, $limit, $timestamp_gte, $timestamp_gt, $timestamp_lte, $timestamp_lt); | ||
print_r($result); | ||
} catch (Exception $e) { | ||
echo 'Exception when calling CrpytoaggregatesApi->cryptoRSI: ', $e->getMessage(), PHP_EOL; | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
| Name | Type | Description | Notes | | ||
| ------------- | ------------- | ------------- | ------------- | | ||
| **crypto_ticker** | **string**| The ticker symbol for which to get relative strength index (RSI) data. | | | ||
| **timestamp** | **string**| Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. | [optional] | | ||
| **timespan** | **string**| The size of the aggregate time window. | [optional] [default to 'day'] | | ||
| **window** | **int**| The window size used to calculate the relative strength index (RSI). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. | [optional] [default to 14] | | ||
| **series_type** | **string**| The price in the aggregate which will be used to calculate the relative strength index. i.e. 'close' will result in using close prices to calculate the relative strength index (RSI). | [optional] [default to 'close'] | | ||
| **expand_underlying** | **bool**| Whether or not to include the aggregates used to calculate this indicator in the response. | [optional] [default to false] | | ||
| **order** | **string**| The order in which to return the results, ordered by timestamp. | [optional] [default to 'desc'] | | ||
| **limit** | **int**| Limit the number of results returned, default is 10 and max is 5000 | [optional] [default to 10] | | ||
| **timestamp_gte** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_gt** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_lte** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_lt** | **string**| Range by timestamp. | [optional] | | ||
|
||
### Return type | ||
|
||
[**\OpenAPI\Client\Model\CryptoRSI200Response**](../Model/CryptoRSI200Response.md) | ||
|
||
### Authorization | ||
|
||
[apiKey](../../README.md#apiKey) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: Not defined | ||
- **Accept**: `application/json`, `text/csv` | ||
|
||
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) | ||
[[Back to Model list]](../../README.md#models) | ||
[[Back to README]](../../README.md) | ||
|
||
## `cryptoSMA()` | ||
|
||
```php | ||
cryptoSMA($crypto_ticker, $timestamp, $timespan, $window, $series_type, $expand_underlying, $order, $limit, $timestamp_gte, $timestamp_gt, $timestamp_lte, $timestamp_lt): \OpenAPI\Client\Model\CryptoSMA200Response | ||
``` | ||
|
||
Simple Moving Average (SMA) | ||
|
||
Get the simple moving average (SMA) for a ticker symbol over a given time range. | ||
|
||
### Example | ||
|
||
```php | ||
<?php | ||
require_once(__DIR__ . '/vendor/autoload.php'); | ||
|
||
|
||
// Configure API key authorization: apiKey | ||
$config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKey('apiKey', 'YOUR_API_KEY'); | ||
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed | ||
// $config = OpenAPI\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apiKey', 'Bearer'); | ||
|
||
|
||
$apiInstance = new OpenAPI\Client\Api\CrpytoaggregatesApi( | ||
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`. | ||
// This is optional, `GuzzleHttp\Client` will be used as default. | ||
new GuzzleHttp\Client(), | ||
$config | ||
); | ||
$crypto_ticker = X:BTCUSD; // string | The ticker symbol for which to get simple moving average (SMA) data. | ||
$timestamp = 'timestamp_example'; // string | Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. | ||
$timespan = day; // string | The size of the aggregate time window. | ||
$window = 50; // int | The window size used to calculate the simple moving average (SMA). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. | ||
$series_type = close; // string | The price in the aggregate which will be used to calculate the simple moving average. i.e. 'close' will result in using close prices to calculate the simple moving average (SMA). | ||
$expand_underlying = false; // bool | Whether or not to include the aggregates used to calculate this indicator in the response. | ||
$order = desc; // string | The order in which to return the results, ordered by timestamp. | ||
$limit = 10; // int | Limit the number of results returned, default is 10 and max is 5000 | ||
$timestamp_gte = 'timestamp_gte_example'; // string | Range by timestamp. | ||
$timestamp_gt = 'timestamp_gt_example'; // string | Range by timestamp. | ||
$timestamp_lte = 'timestamp_lte_example'; // string | Range by timestamp. | ||
$timestamp_lt = 'timestamp_lt_example'; // string | Range by timestamp. | ||
|
||
try { | ||
$result = $apiInstance->cryptoSMA($crypto_ticker, $timestamp, $timespan, $window, $series_type, $expand_underlying, $order, $limit, $timestamp_gte, $timestamp_gt, $timestamp_lte, $timestamp_lt); | ||
print_r($result); | ||
} catch (Exception $e) { | ||
echo 'Exception when calling CrpytoaggregatesApi->cryptoSMA: ', $e->getMessage(), PHP_EOL; | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
| Name | Type | Description | Notes | | ||
| ------------- | ------------- | ------------- | ------------- | | ||
| **crypto_ticker** | **string**| The ticker symbol for which to get simple moving average (SMA) data. | | | ||
| **timestamp** | **string**| Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. | [optional] | | ||
| **timespan** | **string**| The size of the aggregate time window. | [optional] [default to 'day'] | | ||
| **window** | **int**| The window size used to calculate the simple moving average (SMA). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. | [optional] [default to 50] | | ||
| **series_type** | **string**| The price in the aggregate which will be used to calculate the simple moving average. i.e. 'close' will result in using close prices to calculate the simple moving average (SMA). | [optional] [default to 'close'] | | ||
| **expand_underlying** | **bool**| Whether or not to include the aggregates used to calculate this indicator in the response. | [optional] [default to false] | | ||
| **order** | **string**| The order in which to return the results, ordered by timestamp. | [optional] [default to 'desc'] | | ||
| **limit** | **int**| Limit the number of results returned, default is 10 and max is 5000 | [optional] [default to 10] | | ||
| **timestamp_gte** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_gt** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_lte** | **string**| Range by timestamp. | [optional] | | ||
| **timestamp_lt** | **string**| Range by timestamp. | [optional] | | ||
|
||
### Return type | ||
|
||
[**\OpenAPI\Client\Model\CryptoSMA200Response**](../Model/CryptoSMA200Response.md) | ||
|
||
### Authorization | ||
|
||
[apiKey](../../README.md#apiKey) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: Not defined | ||
- **Accept**: `application/json`, `text/csv` | ||
|
||
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints) | ||
[[Back to Model list]](../../README.md#models) | ||
[[Back to README]](../../README.md) |
Oops, something went wrong.