[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"indicator-fibonaccipivotpoint-zh-tw":3},"# 斐波那契樞軸點 (Fibonacci Pivot Point)\n\n> 斐波那契樞軸水平的 StratCraft 指標頁面。\n\n**Route**: `\u002Findicators\u002Ffibonaccipivotpoint\u002F`\n\n## 作用\n\n斐波那契樞軸點使用斐波那契風格的比率計算支撐位和阻力位。\n\n## 公式\n\n樞軸水平是根據前一週期的開盤價、收盤價、最高價和最低價，使用 `0.382`、`0.618` 和 `1` 等比率推導出來的。\n\n## 參數\n\n- `open` - 預設 `False`\n- `close` - 預設 `False`\n- `_autoplot` - 預設 `True`\n- `level1` - 預設 `0.382`\n- `level2` - 預設 `0.618`\n- `level3` - 預設 `1`\n\n## C++23 API\n\n```cpp\n#include \u003Cnonabt\u002Findicators\u002Ffibonaccipivotpoint.hpp>\nauto fib = std::make_unique\u003Cnonabt::FIBONACCIPIVOTPOINT>(data(), false, false, true, 0.382, 0.618, 1.0);\n```\n\n## 常見用法\n\n- 使用斐波那契樞軸進行目標設定和止損設置。\n- 將其與日內波段分析結合使用。\n- 有助於支撐和阻力映射。\n\n## 實用模式\n\n在 0.382 和 0.618 水平周圍的價格反應通常提供清晰的交易參考點。\n"]