Skip to content

ASCVD Risk Level

The ASCVD Risk Level value is sent as part of the final results and can receive 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.

This indicator is supported for face measurements.

The application can receive the ASCVD Risk Level result by implementing VitalSignsListener:

Dart
@override
void onFinalResults(VitalSignsResults results) {
    VitalSign? vitalSign = results.getResult(VitalSignTypes.ascvdRiskLevel);
    if (vitalSign is VitalSignAscvdRiskLevel) {
        print("ASCVD Risk Level: ${vitalSign.value}");
    }
}

For general information about vital signs see the Vital Signs and Health Indicators Information Document.

For a list of supported vital signs by platform and measurement mode (face/polar), along with their required measurement durations, refer to the Indicators Technical Information page.