API reference
GEThttps://ftl.fasttrack.net/v1/stats/{ticker}

One Ticker

This endpoint retrieves a comprehensive set of calculated financial statistics for a specified stock market ticker over a customizable date range. It provides key metrics such as returns, volatility, drawdowns, and correlations that help analyze the historical performance of the ticker.

Users need to specify the ticker symbol in the URL to fetch its corresponding data.

Legacy API: This read-only reference is preserved for existing v1 integrations. New integrations should use the current API documentation.

Parameters

NameInRequirementTypeDescription
tickerpathRequiredstringticker symbol
startqueryOptionalstringFirst day in the date range of all calculations/requests
endqueryOptionalstringLast day in the date range of all calculations/requests. If not provided, the last market day in the database is used
basisqueryOptionalstringBasis used for correlation, beta, sharpe ratio, ulcer performance index
lenqueryOptionalintegerCorrelation length, described in market days
maxdrawqueryOptionalintegerIncludes or exclude max draw data data in result. Max draw is a HEAVY calculation, so omit when not necessary to improve performance
chartqueryOptionalintegerInclude or exclude chart data in result. Chart data is substantially larger than other data and substantially increase the size of the result. Only request if necessary.
countqueryOptionalstringTotal number of datapoints returned in the FTChartData object. This helps improve API response time and minimizes the data loaded into charts. Value must be A to return ALL data points or a number greater than 0
monthendqueryOptionalintegerconvert all calculated date ranges to month end. ie 1 year return from 6/28/2019 will calculate back to 6/29/2018 (the last market day of the month) instead of 6/28/2018.
riskfreequeryOptionalstringticker or % rate of return used as the "risk free rate" in alpha calculation. Default is VMFXX, Vanguard Money Market Fund
appidheaderRequiredstring36 character GUID received from the welcome email. The header name must be sent exactly as lowercase appid. Sign up for a trial at http://apitrial.fasttrack.net
tokenheaderRequiredstring36 character GUID returned by the auth/login endpoint. The header name must be sent exactly as lowercase token.
maqueryOptionalstringComma separated list of moving average lengths
volqueryOptionalstringToggle to include or exclude volume data

Request example

curl --request GET \
  --url 'https://ftl.fasttrack.net/v1/stats/{ticker}' \
  --header 'appid: YOUR_APP_ID' \
  --header 'token: YOUR_TOKEN'

Responses

StatusDescription
200data points associated with ticker
400bad input parameter