Do hemodynamic and activity metrics from wearables (resting HR, HR variability, step count, 6-minute walk distance, home BP/SpO₂) show characteristic trajectories in the 30–90 days before symptom onset, and can they predict imminent end-of-service in patients with a unicameral leadless pacemaker?
Summary: Yes—several wearable-derived trajectories commonly drift in the 30–90 days before symptomatic bradycardia near end-of-service (EOS). The most informative early signals are (a) rate-response attenuation manifesting as lower peak exercise HR for a given effort, (b) a sustained decline in HRV (e.g., RMSSD/SDNN), and (c) reduced daily activity (step count and walking distance). When combined in a multivariate time-to-event or classification model with patient pacing-dependence and device-mode transitions, these features can predict EOS within the next 14–30 days with clinically useful precision in pilot datasets.
// X: daily metrics; baseline: days -90 to -60
baseline_mean_HRV = mean(HRV[-90:-60])
baseline_mean_steps = mean(steps[-90:-60])
HRV_14 = mean(HRV[-14:])
steps_14 = mean(steps[-14:])
pct_drop_HRV = 100 * (baseline_mean_HRV - HRV_14) / baseline_mean_HRV
pct_drop_steps = 100 * (baseline_mean_steps - steps_14) / baseline_mean_steps
if (pct_drop_steps >= 25 and pct_drop_HRV >= 20) alert("Yellow")
Notes & Caveats: Trajectories can be confounded by medication changes (e.g., β-blockers), intercurrent illness, heat/humidity, travel, or device reprogramming. Wearables do not detect loss-of-capture or pauses reliably; device diagnostics remain the reference standard. This content is educational and not a substitute for clinical care.