feat: wavelets

This commit is contained in:
OpenSquared
2026-07-19 16:03:09 +02:00
parent b900d77aa0
commit 9079d4e9c5
3 changed files with 27 additions and 8 deletions

View File

@@ -73,7 +73,7 @@ def wavelet_analyze(
def wavelet_rolling(
symbol: str = Query("SPY"),
period: str = Query("1y", description="how much of the causal output range to return"),
lookback: int = Query(130, ge=32),
lookback: int = Query(260, ge=32),
levels: int = Query(4, ge=2, le=6),
wavelet: str = Query("gmw"),
step: int = Query(1, ge=1),
@@ -114,7 +114,7 @@ def wavelet_rolling(
def wavelet_reliability_endpoint(
symbol: str = Query("SPY"),
period: str = Query("1y", description="how much of the causal output range to scan for turning points"),
lookback: int = Query(130, ge=32),
lookback: int = Query(260, ge=32),
levels: int = Query(4, ge=2, le=6),
wavelet: str = Query("gmw"),
step: int = Query(1, ge=1),