ASCVD Risk Calculator
ASCVD Risk Calculator
Estimate your 10-year risk of atherosclerotic cardiovascular disease (ASCVD) based on your personal health information.
Male Female No Yes Non-Smoker Smoker No YesNot calculated yet.
Age: ${age} years
Sex: ${sex}
Total Cholesterol: ${cholesterol} mg/dL
HDL Cholesterol: ${hdl} mg/dL
Systolic BP: ${systolicBP} mmHg
Smoking Status: ${smoking}
Diabetes: ${diabetes}
`; ascvdSteps += `Formula:
Risk = (Cholesterol / 200) * (Age / 50) * (Smoking Factor)
`; ascvdSteps += `Results:
10-Year ASCVD Risk: ${result}%
`; if (document.getElementById(“calculationStepsASCVD”).style.display === “block”) { document.getElementById(“calculationStepsASCVD”).innerHTML = ascvdSteps; } } function resetASCVD(){ document.querySelectorAll(“#ascvd_calculator_form input”).forEach(el => el.value = “”); ascvdSteps = “”; document.getElementById(“calculationStepsASCVD”).innerHTML = “
Not calculated yet.
“; } function toggleASCVDSteps(){ const s = document.getElementById(“calculationStepsASCVD”); const a = document.getElementById(“toggleArrowASCVD”); if(s.style.display === “none” || s.style.display === “”){ s.style.display = “block”; a.style.transform = “rotate(180deg)”; s.innerHTML = ascvdSteps || “Not calculated yet.
“; } else { s.style.display = “none”; a.style.transform = “rotate(0deg)”; } }This ASCVD Risk Calculator helps estimate the 10-year risk of cardiovascular disease based on various factors such as age, cholesterol levels, blood pressure, and lifestyle factors.
ASCVD Formula
Risk = (Cholesterol / 200) * (Age / 50) * (Smoking Factor)
Example Calculation
Age 50, Total Cholesterol 200 mg/dL, HDL 50 mg/dL, Systolic BP 120 mmHg, Non-smoker → Estimated Risk = 0.45%