Appearance
ASCVD Risk Level
The ASCVD Risk Level value is sent as part of the final results and can have one of the following values:
- Low (< 10%): Indicates minimal estimated cardiovascular risk
- Medium (10–20%): Indicates medium estimated cardiovascular risk
- High (> 20%): Indicates high estimated cardiovascular risk
The ASCVD Risk Level indicator is based on the ASCVD Risk result. If any details are missing from the User Information, the ASCVD Risk Level will not be calculated. For more information on User Information, see the User Information page.
The application can receive the ASCVD Risk Level result by implementing the OnFinalResults callback interface:
TypeScript
import {
VitalSigns,
VitalSignsResults,
ASCVDRiskLevelSign,
} from '@biosensesignal/web-sdk';
const onFinalResults = useCallback((vitalSignsResults: VitalSignsResults) => {
const results = vitalSignsResults.results as VitalSigns;
const ascvdRiskLevel = results.ascvdRiskLevel as ASCVDRiskLevelSign;
if (ascvdRiskLevel?.value != null) {
console.log(`ASCVD Risk Level: ${ascvdRiskLevel.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.