Pine Script Lab
Free TradingView scripts customized by Ashish Mishra to help you automate your technical analysis.
Simple Moving Average Crossover
Free Indicator
यह स्क्रिप्ट 9 EMA और 21 EMA का Crossover दिखाती है। जब 9 EMA ऊपर जाता है तो "BUY" सिग्नल आता है।
//@version=5
indicator("Ashish MA Crossover", overlay=true)
short = ta.ema(close, 9)
long = ta.ema(close, 21)
plot(short, color=color.green)
plot(long, color=color.red)
plotshape(ta.crossover(short, long), style=shape.labelup, location=location.belowbar, color=color.green, text="BUY")
plotshape(ta.crossunder(short, long), style=shape.labeldown, location=location.abovebar, color=color.red, text="SELL")
Auto Support & Resistance
Price Action
यह स्क्रिप्ट पिछले 50 कैन्डल्स के High और Low के आधार पर अपने आप Support और Resistance लाइन ड्रा करती है।
//@version=5
indicator("Ashish Auto S&R", overlay=true)
left = 10
right = 10
h_left = ta.highest(left)
h_right = ta.highest(right)
isHigh = high[right] > h_left[right+1] and high[right] > h_right
plot(isHigh ? high[right] : na, style=plot.style_circles, linewidth=3, color=color.red, offset=-right)
0 Comments