Question

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?

Answer (Scientific, Design-Oriented)

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.

Expected Pre-Symptom Trajectories (30–90 days)

Metric
Typical Trajectory
Physiologic Rationale
Resting HR (nightly)
↓ 2–6 bpm vs. baseline in pacing-dependent patients if fixed “safety” rate or reduced rate-response; flatter diurnal variation.
Loss/attenuation of rate-adaptive pacing or fallback to lower fixed-rate modes reduces nocturnal setpoint and variability.
HRV (RMSSD/SDNN)
↓ 15–30% sustained over ≥7–14 days.
Lower beat-to-beat variability from fixed/limited pacing rates and heightened sympathetic tone from exertional intolerance.
Peak exercise HR
↓ for a given perceived effort or cadence; lower HR–workload slope.
Rate-response sensor underperforms or is disabled near EOS, blunting chronotropic response.
Daily steps / active minutes
↓ 15–30% from 60-day baseline; more frequent inactivity bouts.
Fatigue/dyspnea from relative bradycardia reduces spontaneous activity.
6-minute walk distance (home)
↓ 5–15% vs. personal bests; earlier perceived exertion.
Lower cardiac output reserve at submax workloads.
Home BP
Variable; mild ↑ in SBP with ↓ PP in some, or orthostatic drops if autonomic medications confound.
Lower stroke volume and compensatory vascular tone shifts.
SpO₂
Usually unchanged at rest; transient dips only if ventilation–perfusion mismatch from deconditioning.
Bradycardia alone rarely causes resting desaturation.

Predictive Modeling Approach

Practical, Clinically Plausible Alert Rules (for pilot use)

Example Feature Computation (pseudocode)

// 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")

Study Design to Confirm Predictive Value

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.