Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed rest spec #403

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .polygon/rest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7007,7 +7007,7 @@
"operationId": "EMA",
"parameters": [
{
"description": "The ticker symbol for which to get exponential moving average (EMA) data.",
"description": "Specify a case-sensitive ticker symbol for which to get exponential moving average (EMA) data. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stockTicker",
Expand Down Expand Up @@ -8757,7 +8757,7 @@
"operationId": "MACD",
"parameters": [
{
"description": "The ticker symbol for which to get MACD data.",
"description": "Specify a case-sensitive ticker symbol for which to get moving average convergence/divergence (MACD) data. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stockTicker",
Expand Down Expand Up @@ -10375,7 +10375,7 @@
"operationId": "RSI",
"parameters": [
{
"description": "The ticker symbol for which to get relative strength index (RSI) data.",
"description": "Specify a case-sensitive ticker symbol for which to get relative strength index (RSI) data. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stockTicker",
Expand Down Expand Up @@ -12015,7 +12015,7 @@
"operationId": "SMA",
"parameters": [
{
"description": "The ticker symbol for which to get simple moving average (SMA) data.",
"description": "Specify a case-sensitive ticker symbol for which to get simple moving average (SMA) data. For example, AAPL represents Apple Inc.",
"example": "AAPL",
"in": "path",
"name": "stockTicker",
Expand Down Expand Up @@ -24822,7 +24822,7 @@
"type": "string"
},
"mic": {
"description": "The Market Identifer Code of this exchange (see ISO 10383).",
"description": "The Market Identifier Code of this exchange (see ISO 10383).",
"example": "XASE",
"type": "string"
},
Expand Down Expand Up @@ -25536,7 +25536,7 @@
"operationId": "ListStockSplits",
"parameters": [
{
"description": "Return the stock splits that contain this ticker.",
"description": "Specify a case-sensitive ticker symbol. For example, AAPL represents Apple Inc.",
"in": "query",
"name": "ticker",
"schema": {
Expand Down Expand Up @@ -25570,39 +25570,39 @@
}
},
{
"description": "Search by ticker.",
"description": "Range by ticker.",
"in": "query",
"name": "ticker.gte",
"schema": {
"type": "string"
}
},
{
"description": "Search by ticker.",
"description": "Range by ticker.",
"in": "query",
"name": "ticker.gt",
"schema": {
"type": "string"
}
},
{
"description": "Search by ticker.",
"description": "Range by ticker.",
"in": "query",
"name": "ticker.lte",
"schema": {
"type": "string"
}
},
{
"description": "Search by ticker.",
"description": "Range by ticker.",
"in": "query",
"name": "ticker.lt",
"schema": {
"type": "string"
}
},
{
"description": "Search by execution_date.",
"description": "Range by execution_date.",
"in": "query",
"name": "execution_date.gte",
"schema": {
Expand All @@ -25611,7 +25611,7 @@
}
},
{
"description": "Search by execution_date.",
"description": "Range by execution_date.",
"in": "query",
"name": "execution_date.gt",
"schema": {
Expand All @@ -25620,7 +25620,7 @@
}
},
{
"description": "Search by execution_date.",
"description": "Range by execution_date.",
"in": "query",
"name": "execution_date.lte",
"schema": {
Expand All @@ -25629,7 +25629,7 @@
}
},
{
"description": "Search by execution_date.",
"description": "Range by execution_date.",
"in": "query",
"name": "execution_date.lt",
"schema": {
Expand Down Expand Up @@ -28339,7 +28339,7 @@
},
{
"description": "The option contract identifier.",
"example": "O:EVRI240119C00002500",
"example": "O:EVRI240920P00012500",
"in": "path",
"name": "optionContract",
"required": true,
Expand Down
Loading