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
オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
// 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)