COSTRUZIONE INDICATORE PER ANALISI CICLICA CON VISUAL TRADER (1 Viewer)

vercingetorige

Nuovo forumer
Grazie Hell75, peccato mi dava l'idea di tenere di più invece vedo che negli anni precedenti ha patito, se qualche volenteroso esperto di Vt ha voglia di provare qualche miglioramento ne gioveremmo tutti.
:)
 

Magico25

Forumer attivo
DATE UNA TEST ANCHE A QUESTO POSSIBILMENTE 5 ANNI TIME FRAME 5 MIN CIAUSS



var: minmin, maxmax, miomin, miomax, miomin1, miomax1;
VAR:MioRsi1,miavar(0);
var:MIN,MAX,bb,CC,zona1,mioatr1,mioatr2, miorsi2, min1,max1,zona2, mio12;
mioatr1 = RSI(C,3,s);
miorsi1 = MOV(mioatr1,3,s);

MIN = LLV(MOV(mioatr1,3,s),14) < Ref(LLV(MOV(mioatr1,3,s),14),2) AND LLV((miorsi1),14) < 10;
MAX = HHV(MOV(mioatr1,3,s),14) > Ref(HHV(MOV(mioatr1,3,s),14),2) AND HHV((miorsi1),14) > 90;
if MIN = true then
bb =9;
else
bb =2;
endif;
if MAX = TRUE then
CC =9;
else
CC =2;
endif;

minmin= LLV (C, 90);
maxmax = HHV (C, 90);
miomin = LLV (C, 66);
miomax = HHV (c, 66);
miomin1 = LLV (C, 18);
miomax1 = HHV (C, 18);
PlotChart(minmin,0,black,solid,3);
PlotChart(maxmax,0,black,solid,3);
PlotChart(miomin1,0,red,solid,1);
PlotChart(miomax1,0,blue,solid,3);
PlotChart(miomin,0,blue,solid,1);
PlotChart(miomax,0,red,solid,3);
if miomax1 > miomax then colorbar (blue); endif;
if miomax1 < miomax then colorbar (black); endif;
if L < miomin and BB = 2 then entershort(nextbar,atopen);endif;
if H > miomax and CC = 9 then enterlong(nextbar,atopen);endif;
installtakeprofit(INTICK,40);
installstoploss(INTICK,40 );
 

Hell75

Nuovo forumer
DATE UNA TEST ANCHE A QUESTO POSSIBILMENTE 5 ANNI TIME FRAME 5 MIN CIAUSS

Ecco i risultati
Ciao
Sorry... avevo sbagliato report... :(
1249579346screenhunter01aug.0619.21.gif
1249579361screenhunter02aug.0619.21.gif

1249579371screenhunter03aug.0619.21.gif
1249579379screenhunter04aug.0619.21.gif
 
Ultima modifica:

gilato

Forumer attivo
Ciao Fabrizio,
credo ti sia sbagliato nel dare il report a Magico.
Ma quello mostrato non è relativo al mio ???
 

solospread

Forumer storico
Bravi bravi vedo che c'è del movimento. Mi piace molto quell'equity qui sopra.
A quale listato si riferisce?
Intanto il vecchio sinergia oggi si è fatto un bel 7 su 7.
 

Allegati

  • ScreenHunter_01 Aug. 06 17.19.gif
    ScreenHunter_01 Aug. 06 17.19.gif
    48,4 KB · Visite: 107

gilato

Forumer attivo
Ciao Solo,
si riferisce ad un listato TS fib 5min testato su 5 anni che avevo dato a Hell proprio per provarlo.
Hell gentilmente si è anche offerto di apportare delle migliorie.
Comunque il listato mio di base è questo.
Il TS è semplice come piace a me....non faccio mai prg troppo elaborati anche perchè non ne sono capace ....:lol::lol::lol:
Se qualcuno mi aiuta a migliorarlo lo ringrazio tantissimo :up::up:

Var: SH,SL,miotrend,miocc;

SL=REF(LLV(L,15),1)-gettick;
SH=REF(HHV(H,15),1)+gettick;
miotrend= SUPERTREND(c,10,3);
miocc=cci(c,20);

//installstoploss(INPERC,0.25,"STOP");
//installtakeprofit(intick,15,"exit");
InstallTrailingProfit(INPERC,0.30,0.01);

if t>=900 and t<1735 and crossover(C,MIOTREND)
and miocc>0
then EnterLong(Bar, AtCLOSE);
endif;

if positiondir=1 and C<miotrend then exitlong(bar,atCLOSE);
endif;
if positiondir=1 AND inval<=SL then exitlong(inval,SL,stop);
endif;
if positiondir=1 AND t>1730 then exitlong(bar,atclose);
endif;

if t>=900 and t<1735 and crossunder(C,MIOTREND)
and miocc<0
then EnterShort(bar,AtCLOSE);
endif;

if positiondir=-1 and C>miotrend then exitshort(bar,aTCLOSE);
endif;
if positiondir=-1 AND inval>=SH then exitshort(inval,SH,stop);
endif;
if positiondir=-1 AND t>1730 then exitshort(bar,atclose);
endif;
 

solospread

Forumer storico
Ciao Solo,
si riferisce ad un listato TS fib 5min testato su 5 anni che avevo dato a Hell proprio per provarlo.
Hell gentilmente si è anche offerto di apportare delle migliorie.
Comunque il listato mio di base è questo.
Il TS è semplice come piace a me....non faccio mai prg troppo elaborati anche perchè non ne sono capace ....:lol::lol::lol:
Se qualcuno mi aiuta a migliorarlo lo ringrazio tantissimo :up::up:

Var: SH,SL,miotrend,miocc;

SL=REF(LLV(L,15),1)-gettick;
SH=REF(HHV(H,15),1)+gettick;
miotrend= SUPERTREND(c,10,3);
miocc=cci(c,20);

//installstoploss(INPERC,0.25,"STOP");
//installtakeprofit(intick,15,"exit");
InstallTrailingProfit(INPERC,0.30,0.01);

if t>=900 and t<1735 and crossover(C,MIOTREND)
and miocc>0
then EnterLong(Bar, AtCLOSE);
endif;

if positiondir=1 and C<miotrend then exitlong(bar,atCLOSE);
endif;
if positiondir=1 AND inval<=SL then exitlong(inval,SL,stop);
endif;
if positiondir=1 AND t>1730 then exitlong(bar,atclose);
endif;

if t>=900 and t<1735 and crossunder(C,MIOTREND)
and miocc<0
then EnterShort(bar,AtCLOSE);
endif;

if positiondir=-1 and C>miotrend then exitshort(bar,aTCLOSE);
endif;
if positiondir=-1 AND inval>=SH then exitshort(inval,SH,stop);
endif;
if positiondir=-1 AND t>1730 then exitshort(bar,atclose);
endif;

Ottimo ora lo scarico.
 

solospread

Forumer storico
Ciao Solo,
si riferisce ad un listato TS fib 5min testato su 5 anni che avevo dato a Hell proprio per provarlo.
Hell gentilmente si è anche offerto di apportare delle migliorie.
Comunque il listato mio di base è questo.
Il TS è semplice come piace a me....non faccio mai prg troppo elaborati anche perchè non ne sono capace ....:lol::lol::lol:
Se qualcuno mi aiuta a migliorarlo lo ringrazio tantissimo :up::up:

Var: SH,SL,miotrend,miocc;

SL=REF(LLV(L,15),1)-gettick;
SH=REF(HHV(H,15),1)+gettick;
miotrend= SUPERTREND(c,10,3);
miocc=cci(c,20);

//installstoploss(INPERC,0.25,"STOP");
//installtakeprofit(intick,15,"exit");
InstallTrailingProfit(INPERC,0.30,0.01);

if t>=900 and t<1735 and crossover(C,MIOTREND)
and miocc>0
then EnterLong(Bar, AtCLOSE);
endif;

if positiondir=1 and C<miotrend then exitlong(bar,atCLOSE);
endif;
if positiondir=1 AND inval<=SL then exitlong(inval,SL,stop);
endif;
if positiondir=1 AND t>1730 then exitlong(bar,atclose);
endif;

if t>=900 and t<1735 and crossunder(C,MIOTREND)
and miocc<0
then EnterShort(bar,AtCLOSE);
endif;

if positiondir=-1 and C>miotrend then exitshort(bar,aTCLOSE);
endif;
if positiondir=-1 AND inval>=SH then exitshort(inval,SH,stop);
endif;
if positiondir=-1 AND t>1730 then exitshort(bar,atclose);
endif;

Purtroppo questo tipo di entrata vale tanto quanto il doping nel ciclismo (exitlong(inval,SL,stop); Ho sostituito le uscite con bar,atclose e si nota un certo peggioramento, ma la base è buona perchè entra bene parecchie volte.
 

solospread

Forumer storico
In questi ultimi tipi di TS che troviamo nelle ultime tre pagine, dato che tutti sono formulati in modo da catturare 10 o 15 tic e per poi uscire dal trade, si ha il massimo del profitto quando si entra ad inversione già avvenuta che è anche piu' facile da individuare, magari aspettando che il prezzo tagli una regressione o una MM corta.
 

Users who are viewing this thread

Alto