Appearance
ASCVD Risk
The ASCVD Risk value is sent as part of the final results.
Note
The ASCVD (Atherosclerotic Cardiovascular Disease) Risk Score is a percentage value that estimates an individual's 10-year risk of developing heart disease or stroke. The SDK returns a maximum value of 30, meaning that any result at this threshold represents a high ASCVD risk, including cases where the actual risk may be greater.
The User Information is required to calculate the ASCVD Risk result. If any details are missing from the User Information, the ASCVD Risk will not be calculated. For more information on User Information, see the User Information page.
The application can receive the ASCVD Risk result by implementing the OnFinalResults callback interface:
TypeScript
import {
VitalSigns,
VitalSignsResults,
ASCVDRiskSign,
} from '@biosensesignal/web-sdk';
const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
const results = vitalSignsResults.results as VitalSigns;
const ascvdRisk = results.ascvdRisk as ASCVDRiskSign;
if (ascvdRisk?.value != null) {
console.log(`ASCVD Risk: ${ascvdRisk.value}`);
}
}, []);For general information about vital signs see the Vital Signs and Health Indicators Information Document.
For a list of supported indicators and their required measurement durations, see the Indicators Technical Information page.