fibSpeedResistArcs
Draws Fibonacci Speed Resistance Arcs: curved arcs (not straight fans) from two anchors. Use them to visualize dynamic, rounded support/resistance zones that expand with trend distance. Great for spotting where pullbacks may “kiss” an arc before continuing.
Syntax
fibSpeedResistArcs(originPoint, targetPoint, styles?)
Parameters
originPoint(PricedData) · Center/anchor where arcs start. Example:newPoint(time(70), low(70)).targetPoint(PricedData) · Sets the initial radius; arcs scale by Fibonacci ratios from here. Example:newPoint(time(30), high(30)).styles(FibSpeedResistanceArcsLineToolOverrides) · Appearance & levels:fillBackground(boolean) · Fill between arcs.fullCircles(boolean) · Draw full circles instead of semi-arcs.transparency(number) · 0–100 background transparency.trendline(LinesLevels without coeff) · Base line style (linestyle/linewidth/color).level1 … level11(LinesLevels) · Per-arc visibility and look (coeff/visible/color/linestyle/linewidth).showCoeffs(boolean) · Display Fibonacci values on arcs.
Return Value
(string) The drawing ID of the created Speed Resistance Arcs.
Example
Goal: Every 44 candles, project rounded Fib arcs from a past swing low toward a recent high. We enable a few classic levels, soft fill, and labels.
Result

Tips
Use swing highs/lows for
originPointandtargetPointso arcs align with real structure.If the chart looks busy, disable extra levels with
{ visible: false }or avoidfullCircles.Look for confluence where an arc meets a channel line or horizontal Fib level.
Warning
Don’t pick anchors only a couple of bars apart—arcs will bunch up and be hard to read. Ensure reasonable spacing between originPoint and targetPoint.
Last updated