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
Script open-source

Nello spirito di condivisione promosso da TradingView, l'autore (al quale vanno i nostri ringraziamenti) ha deciso di pubblicare questo script in modalità open-source, così che chiunque possa comprenderlo e testarlo. Puoi utilizzarlo gratuitamente, ma il riutilizzo del codice è subordinato al rispetto del Regolamento. Per aggiungerlo al grafico, mettilo tra i preferiti.

Declinazione di responsabilità

Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.

Vuoi usare questo script sui tuoi grafici?
// 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)