UDAY_C_Santhakumar

UCS_S_Steve Primo - Strategy 4

760
From Now, i will list strategies as UCS _S_ & Indicators will be UCS_I_

This is a short term Pullback / Bounce Strategy. Recommend using this on Daily Chart. Option strategies that work the best are (weekly options credit spread).
Further advanced traders can take advantages with Gamma Scalping on low IV.

Few more revision are planned
Rev 1. Add stoploss and target signals
Rev 2. Conservative Trade Entries.
Rev 3. Customized Settings for trading short and long term, with signals only plotted on daily chart.

For further understanding - www.youtube.com/watch?v=6tvigvpN...

This revision is from 2011. There are more information and hints on the recent versions, it seems. I do not own this strategy. I did not create this strategy. For further information and the current version -

www.protraderstrateg...der-strategy-course/

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


Version 2 -

Uday C Santhakumar
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
// Created by ucsgears
// Currently Setup and Triggers are coded. 
// This is a veryshort term trading strategy Last for 5 days. 
// Stoploss is Low or high of the Setup bar
// Target is the 100% Price Projection from the Trigger, Trigger is 2 ticks above / below for the setup bar. 

study(title = "UCS_S_Steve Primo - Strategy 4", overlay = true)

basisma = sma(close,50)
upper = basisma + (0.382 * stdev(close, 20))
lower = basisma - (0.382 * stdev(close, 20))
plot (basisma)
trendup = close > upper
trenddn = close < lower


// Pullback & Bounce Criteria
lowest = lowest(low,5)
highest = highest(high,5)
plot (lowest)
plot (highest)
pullback = (low == lowest) or (low[1] == lowest[1]) ? 1 : 0
bounce = (high == highest) or (high[1] == highest[1]) ? 1 : 0


// Top 25% Close 
hilowidth = high - low
// Long Setup
longcandle = close > low+hilowidth*.75 ? 1:0
// Short Setup
shortcandle = close < low+hilowidth*.25 ? 1:0

//Setups
setuplong = trendup == 1 and pullback == 1 and longcandle == 1 ? 1:0
setupshort = trenddn == 1 and bounce == 1 and shortcandle == 1 ? 1:0
plotchar(setuplong, title="Long Setup Bar", char='⇑', location=location.belowbar, color=green, transp=0)
plotchar(setupshort, title="Short Setup Bar", char='⇓', location=location.abovebar, color=red, transp=0)


// Trade Trigger
tiggerlongcandle = (setuplong[1] == 1) and (high > high[1]) ? 1 : 0
tiggershortcandle = (setupshort[1] == 1) and (low < low[1]) ? 1 : 0
//bgcolor (tiggerlongcandle)
//bgcolor (tiggershortcandle)

plotshape(tiggerlongcandle ? tiggerlongcandle : na, title="Triggered Long",style=shape.triangleup, location=location.belowbar, color=green, transp=0, offset=0)
plotshape(tiggershortcandle ? tiggershortcandle : na, title="Triggered Short",style=shape.triangledown, location=location.abovebar, color=red, transp=0, offset=0)