Scalping Trading System
Forums › ProRealTime forum Italiano › Supporto ProOrder › Scalping Trading System
- This topic has 6 replies, 2 voices, and was last updated 6 years ago by Gianluca.
-
-
12/16/2017 at 12:35 AM #55789
Ciao a tutti, ho trovato questo indicatore spulciando il forum ed ho provato a mettere su un trading system, stranamente pero’ non opera nell’ultimo giorno (oggi) nel back test, qualche idea? Qualcuno sa come migliorarlo?
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100DEFPARAM CumulateOrders = FalseDEFPARAM FLATBEFORE = 080000DEFPARAM FLATAFTER = 210000daysForbiddenEntry = OpenDayOfWeek = 6 OR OpenDayOfWeek = 0WHB=6WHS=6BIB=6BIS=6PPKKS=0.994PPKKB=0.994//////////////////////////////////////////////////////////////////////// MODIFIED UNIVERSAL OSCILLATOR 1whitenoiseB= (Close - Close[WHS])if barindex>BIS thena11= exp(-1.414 * 3.14159 / BIS)b11= 2*a11 * Cos(1.414*180 /BIS)c22= b11c33= -a11 * a11c11= 1 - c22 - c33filtB= c11 * (whitenoiseB + whitenoiseB[1])/2+ c22*filtB[1] + c33*filtB[1]filt11 = filtBif ABS(filt11)>pkB[1] thenpkB = ABS(filt11)elsepkB = PPKKS * pkB[1]endifif pkB=0 thendenomB = -1elsedenomB = pkBendifif denomB = -1 thenresultB = resultB[1]elseresultB = filt11/pkBendifendif// MODIFIED UNIVERSAL OSCILLATOR 2whitenoise= (Close - Close[WHB])if barindex>BIB then// super smoother filtera1= (-1.414 * 3.14159 / BIB)b1= 2*a1 * Cos(1.414*180 /BIB)c2= b1c3= -a1 * a1c1= 1 - c2 - c3filt= c1 * (whitenoise + whitenoise[1])/2+ c2*filt[1] + c3*filt[1]filt1 = filtif ABS(filt1)>pk[1] thenpk = ABS(filt1)elsepk = PPKKB * pk[1]endifif pk=0 thendenom = -1elsedenom = pkendifif denom = -1 thenresultS = resultS[1]elseresultS = filt1/pkendifendif////////////////////////////////////////////////////////////////////////PATNER UP 1PrUp01 = results < var1PrUp01 = PrUp01 and results crosses over resultb//PATNER DOWN 1PrDw01 = results > var2PrDw01 = PrDw01 and results crosses under resultb/////////////tuecondizioniLong= PrUp01tuecondizionishort=PrDw01// Condizioni per entrare su posizioni longIF NOT LongOnMarket AND TueCondizionilong and not daysForbiddenEntry THENBUY 1 CONTRACTS AT MARKETENDIF// Condizioni per entrare su posizioni shortIF NOT ShortOnMarket AND TueCondizionishort and not daysForbiddenEntry THENSELLSHORT 1 CONTRACTS AT MARKETENDIF// Stop e target: Inserisci qui i tuoi stop di protezione e profit targetSET TARGET PPROFIT profittoSET STOP PLOSS stopp//VARIABILI VAR1=15.5 VAR2=-0.5 PROFITTO= 65 STOPP= 4512/16/2017 at 2:10 AM #55794https://www.prorealcode.com/prorealtime-indicators/scalping-indicator-2/ Questo è il post dove ho preso l’indicatore
12/21/2017 at 3:29 PM #5625312/22/2017 at 9:23 AM #56333@robertogozzi e @nicolas scusate se vi disturbo, sapreste aiutarmi?
12/22/2017 at 9:35 AM #56337l’indicatore è questo:
// SCALPING DAX INIDCATOR, USABLE ON ANY TOOL, SET UP TIME FRAME 1 MINUTE.
// PRC CONTRIBUTE_ ALE_15/12/2017
//DEFPARAM CALCULATEONLASTBARS=50000
//WHB=6
//WHS=6
//BIB=6
//BIS=6
//PPKKS=0.994
//PPKKB=0.994
//RES=3
//SUP=3// GRAPHIC VARIABLES
PIP = 1*Pipsize //ARROW DISTANCE
LIN = 20 //LENGTH OF SEGMENT OF SUPPORT OR RESISTENCE
RESISTENCE = RES*Pipsize //DISTANCE OF THE SEGMENT OF THE RESISTENCE
SUPPORT = SUP*Pipsize //DISTANCE OF THE SEGMENT OF THE SUPPORT
// ENABLED PARNER 1-0 / ON-OFF
ONCE PrEnabled01 = P01 // SWITCH INDICATOR P01,P02 ETC ..//////////////////////////////////////////////////////////////////////
// MODIFIED UNIVERSAL OSCILLATOR 1
whitenoiseB= (Close – Close[WHS])
if barindex>BIS then
a11= exp(-1.414 * 3.14159 / BIS)
b11= 2*a11 * Cos(1.414*180 /BIS)
c22= b11
c33= -a11 * a11
c11= 1 – c22 – c33
filtB= c11 * (whitenoiseB + whitenoiseB[1])/2+ c22*filtB[1] + c33*filtB[1]
filt11 = filtB
if ABS(filt11)>pkB[1] then
pkB = ABS(filt11)
else
pkB = PPKKS * pkB[1]
endif
if pkB=0 then
denomB = -1
else
denomB = pkB
endif
if denomB = -1 then
resultB = resultB[1]
else
resultB = filt11/pkB
endif
endif
// MODIFIED UNIVERSAL OSCILLATOR 2
whitenoise= (Close – Close[WHB])
if barindex>BIB then
// super smoother filter
a1= (-1.414 * 3.14159 / BIB)
b1= 2*a1 * Cos(1.414*180 /BIB)
c2= b1
c3= -a1 * a1
c1= 1 – c2 – c3
filt= c1 * (whitenoise + whitenoise[1])/2+ c2*filt[1] + c3*filt[1]
filt1 = filt
if ABS(filt1)>pk[1] then
pk = ABS(filt1)
else
pk = PPKKB * pk[1]
endif
if pk=0 then
denom = -1
else
denom = pk
endif
if denom = -1 then
resultS = resultS[1]
else
resultS = filt1/pk
endif
endif//////////////////////////////////////////////////////////////////////
//PATNER UP 1
PrUp01 = results <-0.5
PrUp01 = PrUp01 and results crosses over resultb
PrUp01 = (PrUp01 and PrEnabled01)
//PATNER DOWN 1
PrDw01 = results >0.5
PrDw01 = PrDw01 and results crosses under resultb
PrDw01 = (PrDw01 and PrEnabled01)//////////////////////////////////////////////////////////////////////
// COLORS OF THE ARROW AND SEGMENT
IF PrUp01 THEN
R=0
G=128
B=255
ELSIF PrDw01 THEN
R=0
G=128
B=255
endifif TIME >=80000 and time <=210000 THEN
if PrUp01 then
DRAWARROWUP(barindex,LOW-PIP)coloured(R,G,B)
DRAWSEGMENT(barindex,LOW-SUPPORT,barindex-LIN, LOW-SUPPORT )coloured(R,G,B)
elsif PrDw01 then
DRAWARROWDOWN(barindex,HIGH+PIP)coloured(R,G,B)
DRAWSEGMENT(barindex,HIGH+RESISTENCE,barindex-LIN, HIGH+RESISTENCE)coloured(R,G,B)
endif
ENDIFRETURN
12/22/2017 at 10:01 AM #56344> Per chiarezza dei messaggi sul Forum di Prorealcode, separate le parti del vostro codice usando il pulsante per l’inserimento del testo del codice. <<
Ci sono già discussioni in corso su una strategia con questo indicatore, guidato dal suo autore ALE, in questo argomento: https://www.prorealcode.com/topic/scalping-indicator/
12/22/2017 at 10:38 AM #56351> Per chiarezza dei messaggi sul Forum di Prorealcode, separate le parti del vostro codice usando il pulsante per l’inserimento del testo del codice. <<
Ci sono già discussioni in corso su una strategia con questo indicatore, guidato dal suo autore ALE, in questo argomento: https://www.prorealcode.com/topic/scalping-indicator/
oh, grazie e scusatemi 🙂
-
AuthorPosts
Find exclusive trading pro-tools on