[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-stochf-en":3},"# Stochastic Fast (STOCHF)\n\n> StratCraft indicator page for the fast stochastic oscillator.\n\n**Route**: `\u002Findicators\u002Fstochf\u002F`\n\n## What It Does\n\nSTOCHF measures the close position within the recent high-low range and applies a fast smoothing step.\n\n## Formula\n\n`%K = 100 * (Close - Lowest Low(n)) \u002F (Highest High(n) - Lowest Low(n))`\n\n## Parameters\n\n- `period` - default `14`\n- `period_dfast` - default `3`\n- `movav` - default `MovingAverageSimple`\n- `upperband` - default `80`\n- `lowerband` - default `20`\n- `safediv` - default `False`\n- `safezero` - default `0`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Fstochf.hpp>\nauto stochF = std::make_unique\u003Cnonabt::STOCHF>(14, 3, \"MovingAverageSimple\", 80.0, 20.0, \"False\", 0);\n```\n\n## Common Usage\n\n- Use it for short-term momentum and reversal detection.\n- Pair it with price structure or trend filters.\n- Helpful when you want a faster oscillator than full stochastic.\n"]