TradingView
ChrisMoody
25 июля 2014 г., 15:07

CM_Parabolic SAR 

Crude Oil (WTI)FXCM

Описание

Enhanced Parabolic Sar

Simply Enhances Default Parabolic SAR by creating Two Color Options, One for UpTrend, Other for DownTrend

Ability To Turn On/Off The Up Trending Parabolic SAR, And The Down Trending Parabolic SAR

Great Indicator For Trailing Stops.
Комментарии
mthibault1963
It is possible to have alerts when SAR going Down or Up
Djibouti
miryalaa
@mthibault1963, here is the updated Chris's script with Buy and Sell Alerts!!!

Hope this helps.

//@version=3
study(title="Parabolic SAR Buy and Sell", shorttitle="P-SAR Buy and Sell", 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")
highlightStartPoints = input(title="Highlight Start Points ?", defval=true)

startCalc = start * .01
incrementCalc = increment * .01
maximumCalc = maximum * .10

psar = sar(startCalc, incrementCalc, maximumCalc)
dir = psar < close ? 1 : -1

colUp = close >= psar ? lime : na
colDown = close <= psar ? red : na

plotshape(dir == 1 and dir[1] == -1 and highlightStartPoints ? psar : na, title="Buy", style=shape.labelup, location=location.absolute, size=size.normal, text="Buy", transp=0, textcolor = white, color=green, transp=0)
plotshape(dir == -1 and dir[1] == 1 and highlightStartPoints ? psar : na, title="Sell", style=shape.labeldown, location=location.absolute, size=size.normal, text="Sell", transp=0, textcolor = white, color=red, transp=0)

plot(sus and psar ? psar : na, title="Up Trending SAR", style=circles, linewidth=4, color=colUp, transp=0)
plot(sds and psar ? psar : na, title="Down Trending SAR", style=circles, linewidth=4, color=colDown, transp=0)

bgcolor(sus and psar ? colUp : na, transp=90, title="BUY NOW")
bgcolor(sds and psar ? colDown: na, transp=90, title="SELL NOW")

alertcondition(condition=dir == 1 and dir[1] == -1 and highlightStartPoints ? psar : na, title="SAR BUY ALERT", message="SAR BUY ALERT")
alertcondition(condition=dir == -1 and dir[1] == 1 and highlightStartPoints ? psar : na, title="SAR SELL ALERT", message="SAR SELL ALERT")
dish67
@miryalaa, thank you
I will test
CryptoLoverGER
@miryalaa, thank you so much
fanny75
@miryalaa, wow...cool stuff ... Thank you very much
shoppingmaks
@miryalaa, Not able to see the Buy/Sell signal with the updates code.
barisbutev
@miryalaa, it's not working dear
SBANCACRYPTO
Hi,
I want to set an alert when the green circle compare on candelstick closing.

How can i set it?

Thanks
Raamadan
Hello and good day everyone
please you can also code for mt4 i need this code for mt4 paltform
Ещё