Skip to content

Instantly share code, notes, and snippets.

View bespokoid's full-sized avatar

Stanislav Bernstein bespokoid

View GitHub Profile
@bespokoid
bespokoid / Parabolic SAR
Created September 8, 2019 04:20 — forked from marketcalls/Parabolic SAR
Parabolic SAR
study(title="Parabolic SAR", shorttitle="P-SAR", overlay=true)
start = input(2, minval=0, maxval=10, title="Start - Default = 2 - Multiplied by .01")
increment = input(2, minval=0, maxval=10, title="Step Setting (Sensitivity) - Default = 2 - Multiplied by .01" )
maximum = input(2, minval=1, maxval=10, title="Maximum Step (Sensitivity) - Default = 2 - Multiplied by .10")
sus = input(true, "Show Up Trending Parabolic Sar")
sds = input(true, "Show Down Trending Parabolic Sar")
disc = input(false, title="Start and Step settings are *.01 so 2 = .02 etc, Maximum Step is *.10 so 2 = .2")
//"------Step Setting Definition------"
//"A higher step moves SAR closer to the price action, which makes a reversal more likely."