StratCraft

斐波那契樞軸點 (Fibonacci Pivot Point)

斐波那契樞軸水平的 QuantNexus 指標頁面。

Route: /quantnexus/indicators/fibonaccipivotpoint/

作用

斐波那契樞軸點使用斐波那契風格的比率計算支撐位和阻力位。

公式

樞軸水平是根據前一週期的開盤價、收盤價、最高價和最低價,使用 0.3820.6181 等比率推導出來的。

參數

  • open - 預設 False
  • close - 預設 False
  • _autoplot - 預設 True
  • level1 - 預設 0.382
  • level2 - 預設 0.618
  • level3 - 預設 1

C++23 API

#include <nonabt/indicators/fibonaccipivotpoint.hpp>
auto fib = std::make_unique<nonabt::FIBONACCIPIVOTPOINT>(data(), false, false, true, 0.382, 0.618, 1.0);

常見用法

  • 使用斐波那契樞軸進行目標設定和止損設置。
  • 將其與日內波段分析結合使用。
  • 有助於支撐和阻力映射。

實用模式

在 0.382 和 0.618 水平周圍的價格反應通常提供清晰的交易參考點。