API reference
POSThttps://ftl.fasttrack.net/v1/stats/xmulti

Multiple Tickers

This endpoint allows users to retrieve statistical data for an array of ticker symbols simultaneously. By posting a list of tickers, users can receive a detailed breakdown of financial statistics for each, making it ideal for comparative analysis or portfolio review.

This endpoint simplifies obtaining metrics across multiple stocks, enhancing decision-making and market insight.

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

Parameters

NameInRequirementTypeDescription
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 body

Content type: application/json

[
  "AAPL"
]

Request example

curl --request POST \
  --url 'https://ftl.fasttrack.net/v1/stats/xmulti' \
  --header 'appid: YOUR_APP_ID' \
  --header 'token: YOUR_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '["AAPL"]'

Responses

StatusDescription
200data points associated with ticker
400bad input parameter