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 ....
Se qualcuno mi aiuta a migliorarlo lo ringrazio tantissimo
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;