Hi
I'm hoping someone can help me convert the following TradingView PSAR code into thinkscript.
https://www.tradingview.com/script/Sl4CIxLs-PSAR-using-Moving-Linear-Regression-LSMA/
I've tried everything I can think of. The issue seems to be getting Thinkscipt to update SAR to NEXTSAR before evaluating if there should be a PSAR flip. Would really appreciate any help.
Thanks!
//@version=5
indicator(title='PSAR using Moving Linear Regression (LSMA)', shorttitle='PSAR using LSMA', timeframe="", overlay=true)
src = input(title='Source', defval=close)
RegressionLineLength = input.int(defval=10, title='Regression Line Length', maxval=1000, minval=1)
start = input(0.02)
increment = input(0.02)
maximum = input(0.12)
var bool uptrend = na
var float EP = na
var float SAR = na
var float AF = start
var float nextBarSAR = na
myMovingLinearRegression = ta.linreg(src, RegressionLineLength, 0)
if bar_index > RegressionLineLength
firstTrendBar = false
SAR := nextBarSAR
// calculate intial PSAR values
if bar_index == RegressionLineLength + 1
float prevSAR = na
float prevEP = na
lowPrev = myMovingLinearRegression[1]
highPrev = myMovingLinearRegression[1]
closeCur = myMovingLinearRegression
closePrev = myMovingLinearRegression[1]
if closeCur > closePrev
uptrend := true
EP := myMovingLinearRegression
prevSAR := lowPrev
prevEP := myMovingLinearRegression
prevEP
else
uptrend := false
EP := myMovingLinearRegression
prevSAR := highPrev
prevEP := myMovingLinearRegression
prevEP
firstTrendBar := true
SAR := prevSAR + start * (prevEP - prevSAR)
SAR
if uptrend
if SAR > myMovingLinearRegression
firstTrendBar := true
uptrend := false
SAR := math.max(EP, myMovingLinearRegression)
EP := myMovingLinearRegression
AF := start
AF
else
if SAR < myMovingLinearRegression
firstTrendBar := true
uptrend := true
SAR := math.min(EP, myMovingLinearRegression)
EP := myMovingLinearRegression
AF := start
AF
if not firstTrendBar
if uptrend
if myMovingLinearRegression > EP
EP := myMovingLinearRegression
AF := math.min(AF + increment, maximum)
AF
else
if myMovingLinearRegression < EP
EP := myMovingLinearRegression
AF := math.min(AF + increment, maximum)
AF
// now calculate current SAR...
if uptrend
SAR := math.min(SAR, myMovingLinearRegression[1])
if bar_index > 1
SAR := math.min(SAR, myMovingLinearRegression[2])
SAR
else
SAR := math.max(SAR, myMovingLinearRegression[1])
if bar_index > 1
SAR := math.max(SAR, myMovingLinearRegression[2])
SAR
// and the next SAR
nextBarSAR := SAR + AF * (EP - SAR)
nextBarSAR
// wait for bar to close before updating the PSAR value
// show last value for convenience
SARplotValue = barstate.isconfirmed ? SAR : SAR[1]
// plot
plot(SARplotValue, title='PSAR LSMA', style=plot.style_circles, linewidth=2, color=color.new(color.gray, 0))
//plot(nextBarSAR, style=plot.style_circles, linewidth=3, color=color.gray)
plot(myMovingLinearRegression, title='LSMA', linewidth=3, color=color.new(color.blue, 0), display=display.none)