counts how often each session opens with a gap up or down from the prior close and fills, bucketed by gap size in either dollar or percent terms. returns gap-type counts, fill percentages per size bucket, and a per-day detail table. configurable via percentage (fill threshold; default 100 = full fill back to prior close) and measurement (dollar or percent bucketing).
Documentation Index
Fetch the complete documentation index at: https://edgeful.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ticker symbol. format varies by market_type: stocks use a plain symbol (e.g., SPY), forex uses a 6-character pair (e.g., EURUSD), crypto uses a contract pair (e.g., BTCUSD), futures uses the root symbol (e.g., ES).
"SPY"
"EURUSD"
"BTCUSD"
"ES"
market venue for the ticker. one of: forex, futures, crypto, stock. determines supported symbols and whether session-based intraday aggregation is available.
forex, futures, crypto, stock "stock"
"forex"
inclusive start date, YYYY-MM-DD, interpreted in the request timezone. sessions on or after this date are included in the calculation.
"2024-01-01"
inclusive end date, YYYY-MM-DD, interpreted in the request timezone. sessions on or before this date are included in the calculation.
"2024-12-31"
optional session start time, HH:MM:SS, interpreted in the request timezone. omit together with end_time to use daily OHLC data. provide together with end_time to aggregate intraday bars into a custom session (forex, futures, and crypto only; ignored for stocks).
optional session end time, HH:MM:SS, interpreted in the request timezone. omit together with start_time to use daily OHLC data. provide together with start_time to aggregate intraday bars into a custom session (forex, futures, and crypto only; ignored for stocks).
fill threshold as a percentage of the gap. 100 requires the full gap to be retraced back to the prior close; lower values count partial fills.
bucketing mode for gap size. one of: percent (gap measured as a percentage of prior close) or dollar (gap measured in absolute price).
inclusive lower bound of a custom percent-size bucket. used with custom_percent_end when measurement is percent to isolate gaps within a specific size range.
inclusive upper bound of the custom percent-size bucket. pair with custom_percent_start.
inclusive lower bound of a custom dollar-size bucket. used with custom_dollar_end when measurement is dollar to isolate gaps within a specific absolute-price range.
inclusive upper bound of the custom dollar-size bucket. pair with custom_dollar_start.
IANA timezone used to interpret all date and time parameters and to group sessions into calendar days. defaults to America/New_York.
Successful Response