Skip to content

Commit

Permalink
Fixed rest spec (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpolygon authored Mar 28, 2024
1 parent 7cb5208 commit fc56f23
Showing 1 changed file with 15 additions and 15 deletions.
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

0 comments on commit fc56f23

Please sign in to comment.