[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-anyn-en":3},"# Any N (ANYN)\n\n> StratCraft indicator page for ANYN utility logic.\n\n**Route**: `\u002Findicators\u002Fanyn\u002F`\n\n## What It Does\n\nANYN checks whether any value in the lookback window satisfies the configured condition. It is commonly used as a helper for signal persistence or event detection.\n\n## Formula\n\nANYN returns true or 1 when at least one observation in the last `n` periods satisfies the configured condition.\n\n## Parameters\n\n- `period` - default `14`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fanyn.hpp>\nauto anyn = std::make_unique\u003Cnonabt::ANYN>(data(), 14);\n```\n\n## Common Usage\n\n- Use ANYN as a trigger helper.\n- Combine it with thresholds or cross conditions.\n- Useful when you only need one qualifying event in the lookback window.\n\n## Practical Pattern\n\nANYN is a persistence filter for \"has the condition occurred at least once\" logic.\n"]