addedInput schema / examples
Added value: +[
+ {
+ "from": "2024-01-01",
+ "multiplier": 1,
+ "ticker": "AAPL",
+ "timespan": "day",
+ "to": "2024-01-31"
+ },
+ {
+ "from": "2024-01-15",
+ "limit": 100,
+ "multiplier": 15,
+ "ticker": "TSLA",
+ "timespan": "minute",
+ "to": "2024-01-16"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "adjusted": {
+ "description": "Whether data is adjusted",
+ "type": "boolean"
+ },
+ "count": {
+ "description": "Number of results",
+ "type": "number"
+ },
+ "next_url": {
+ "description": "Next page URL if available",
+ "type": "string"
+ },
+ "results": {
+ "description": "OHLC bar data",
+ "items": {
+ "properties": {
+ "c": {
+ "description": "Close price",
+ "type": "number"
+ },
+ "h": {
+ "description": "High price",
+ "type": "number"
+ },
+ "l": {
+ "description": "Low price",
+ "type": "number"
+ },
+ "n": {
+ "description": "Number of transactions",
+ "type": "number"
+ },
+ "o": {
+ "description": "Open price",
+ "type": "number"
+ },
+ "t": {
+ "description": "Timestamp",
+ "type": "number"
+ },
+ "v": {
+ "description": "Volume",
+ "type": "number"
+ },
+ "vw": {
+ "description": "Volume weighted average",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "API response status",
+ "type": "string"
+ },
+ "ticker": {
+ "description": "Ticker symbol",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}