feat(protocol): extend KNOWN_FEATURES with temporal feature names

This commit is contained in:
2026-05-11 16:56:36 +02:00
parent 30dbba4d74
commit 3e9a4efcc2
2 changed files with 32 additions and 1 deletions
+2 -1
View File
@@ -20,7 +20,8 @@ KNOWN_INDICATORS: frozenset[str] = frozenset(
{"sma", "rsi", "atr", "macd", "realized_vol"}
)
KNOWN_FEATURES: frozenset[str] = frozenset(
{"open", "high", "low", "close", "volume"}
{"open", "high", "low", "close", "volume",
"hour", "dow", "is_weekend", "minute_of_hour"}
)
# Convenience union (utile a validator / parser).