Implement the autonomous P/PI controller that:
- Computes the error between market price and current redemption price
- Derives a new redemption rate (positive or negative drift)
- Applies integral windup safeguard (clamp accumulated error)
- Updates the redemption price continuously via
redemption_price += redemption_rate * Δt
- Pauses updates if the price feed is stale or unavailable
This needs the price feed oracle.
Implement the autonomous P/PI controller that:
redemption_price += redemption_rate * ΔtThis needs the price feed oracle.