← Back to Library
Trend

Parabolic SAR

Parabolic SAR (Stop and Reverse) is used to determine the price direction of an asset and draw attention to when the price direction is changing.

Pine Script V6
//@version=6
indicator('Parabolic SAR', overlay=true)
start = input.float(0.02)
increment = input.float(0.02)
maximum = input.float(0.2)
plot(ta.sar(start, increment, maximum), 'Parabolic SAR', style=plot.style_cross, color=color.blue)