UDAY_C_Santhakumar

UCS_S_Steve Primo - Strategy #8

Hello Fellas,

Hope you are trading fantastic and fine. Here is another setup from Steve Primo (Stocks) Setups. He claims this can be applied on any market, and you can. Primarily focused on Stocks and Futures market.

NOTE : I DID CODE THE BOTTOM INDICATOR, NOT PUBLISHING IT, ITS JUST RSI(5)

What did I change, ofcourse I don't publish what I find, There is a bit of me in the codes.....
1. Setup only shows up at meaningful levels, Stringent Filter

Myself and tradearcher will keep this upto date. As he has volenteered to help with the track record of steve primo strategies.
docs.google.com...Vbf5TQIHsM/edit?usp=sharin...

This is more like catching a freight train after a mini pullback.

AGAIN, This is not a holy grail, but this fits my personality of trading, Buying pullbacks on stronger stocks. Because it is harder to get a UCS_momo_Oscillator to signal a setup, primarily because of the smoothing, you can use this as an alternative to catch the excitement trade.

Do not sit on it for more than T+4 days, Unless another setup triggered in your way.

Rule - Buy/Sell the candle breakout next day after the setup - in the direction it is setting up
- Close the Position @ 100% candle extension or RSI Oversold.

Uday C Santhakumar
오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?
// Coded by UCSgears - Steve Primo's Setup
// I do not own the strategy, Developed by taking hints from his video library in Youtube
// So far, this can be one of my fav setup, Fits my mentalilty.

study(shorttitle="SP-S#8", title = "Steve Primo - Strategy #8", overlay = true, precision = 2)

trend = sma(close, 50)
rsi = rsi(close, 5)
rsitriggervalue = 50
petd = ema(close,15)

// PET-D
petdcolor = close > petd ? green : red
barcolor (petdcolor)

// ALL PLOT
plot(trend, linewidth = 3, color = black, title = "Trend - Long Term")
plot(petd, linewidth = 1, color = blue, title = "Trend - Short Term")

//Setup Long
al = low > trend and close > trend
bl = rsi[1] < rsitriggervalue and rsi > rsitriggervalue and rsi < 60
cl = close > petd 
zl = (al == 1 and bl == 1 and cl == 1) ? 1 : na

//Setup Short
as = high < trend and close < trend
bs = rsi[1] > rsitriggervalue and rsi < rsitriggervalue and rsi > 40
cs = close < petd 
zs = (as == 1 and bs == 1 and cs == 1) ? 1 : na

// Bar Color 
zc = zl == 1 ? green : zs == 1 ? red : na

// All Plot
plotchar(zl ,location=location.belowbar, text="Strategy #8 Long", color = zc)
plotchar(zs ,location=location.abovebar, text="Strategy #8 Short", color = zc)

//plot(rsi)
//plot(rsitriggervalue)