The Best Trading System

What do you like or dislike on this thread?

  • Like: Trading Theory, Psy Ops, Myth Busters

    Votes: 22 37.3%
  • Like: Trading Systems

    Votes: 20 33.9%
  • Like: Everything on this thread

    Votes: 32 54.2%
  • Dislike: Too much theory, not enough actionable items

    Votes: 4 6.8%
  • Dislike: Systems discussed are found as useless

    Votes: 1 1.7%
  • Dislike: Everything on this thread

    Votes: 2 3.4%

  • Total voters
    59

vijkris

Learner and Follower
#92
Paaji, tussi kitthe ?
Have patience bro. Kismat walon ko Happy ji ka reply milta hai. :D

BTW backtesting is a headache, atleast for me. So I consider it to be same with everyone.
But he is a good coder, so it will be bit easy for him.
As it is a working day, it will be difficult for anyone to devote time for this. :)
 

Tuna

Listen and act, don't ask it, it doesn't oblige
#93
Have patience bro. Kismat walon ko Happy ji ka reply milta hai. :D

BTW backtesting is a headache, atleast for me. So I consider it to be same with everyone.
But he is a good coder, so it will be bit easy for him.
As it is a working day, it will be difficult for anyone to devote time for this. :)
Same clan ;)
 
#94
Paaji, tussi kitthe ?
Hi

The ADX filter on 60 Mins TF reduces the performance of the system,
overall no of trades reduced with no increase in win/loss,
so the filter removing both profitable and loss making trades . . .

Will edit/update this post when free


Thanks


Happy :)
 
#95
Have patience bro. Kismat walon ko Happy ji ka reply milta hai. :D

BTW backtesting is a headache, atleast for me. So I consider it to be same with everyone.
But he is a good coder, so it will be bit easy for him.
As it is a working day, it will be difficult for anyone to devote time for this. :)
Hello Vijay

Yesterday I was trying to reply to one of your posts about SIP in MFs,
but the board did not allow me to post on that thread . . .


I believe posting codes/afls on the board (specially the ones with buy/sell arrows) does not help anyone
just adds more code to people's collection . . .
yes, solving specific queries about coding definitely helps.

On the other hand what Tuna is doing on this thread is an excellent Job
It takes so much effort to lay it out in so much details,
not just the technical part of the trading system
but also the premise behind it

I have also tested his Fool's System, for 2016 it gives just 20 trades
with 16 winners and 4 losers with net gains of about 2500 points . . . :thumb:

On one of his posts, he has rightly said,

"if you are not making 50%+ today, stop everything else and trade this system" :D


Cheers


Happy :)
 

Tuna

Listen and act, don't ask it, it doesn't oblige
#96
Hello Vijay


......



I have also tested his Fool's System, for 2016 it gives just 20 trades

with 16 winners and 4 losers with net gains of about 2500 points . . . :thumb:



On one of his posts, he has rightly said,



"if you are not making 50%+ today, stop everything else and trade this system" :D





Cheers





Happy :)


Thanks for this one Happy. What the SL TgT you tested with ?


Sent from my iPhone using Tapatalk
 
#97
Hello Vijay



Yesterday I was trying to reply to one of your posts about SIP in MFs,

but the board did not allow me to post on that thread . . .





I believe posting codes/afls on the board (specially the ones with buy/sell arrows) does not help anyone

just adds more code to people's collection . . .

yes, solving specific queries about coding definitely helps.



On the other hand what Tuna is doing on this thread is an excellent Job

It takes so much effort to lay it out in so much details,

not just the technical part of the trading system

but also the premise behind it



I have also tested his Fool's System, for 2016 it gives just 20 trades

with 16 winners and 4 losers with net gains of about 2500 points . . . :thumb:



On one of his posts, he has rightly said,



"if you are not making 50%+ today, stop everything else and trade this system" :D





Cheers





Happy :)


Hello Happy Ji,

Can you share AFL for both (last one and for Fool's system)?

Thanks


Sent from my iPhone using Tapatalk
 
#98
Thanks for this one Happy. What the SL TgT you tested with ?


Sent from my iPhone using Tapatalk
Hi

The exit condition is itself very tight (Mid point of previous day candle) so have not used any other fixed points stop . . .

For profit stop had tested with fixed points stop, but here again
noticed that when the exit conditions is not triggered it better to let it run
in few cases the gains run beyond 500 points, not sure one can hold till such time . . . :D

So we can say that profit stop should be placed around 450-500 points

As the data set is very small (20 trades) have checked the setup/trigger manually
with some aid from code like plotting the midpoint of previous day on the chart

Code:
//===========================================================
_SECTION_BEGIN("Price");
SetChartOptions(0,chartShowArrows|chartShowDates);
_N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
_SECTION_END();


_SECTION_BEGIN("FOOLS SYSTEM");
e1 = EMA(C,20);	
e2 = EMA(C,50);
M1 = Ref((H+L)/2,-1);

Plot(e1,"",colorYellow,styleNoRescale);
Plot(e2,"",colorWhite,styleNoRescale|styleThick);
Plot(M1,"",colorLightGrey,styleStaircase);

ColorUP = IIf(e1>e2,colorWhite,colorBlack);
ColorDN = IIf(e1<e2,colorWhite,colorBlack);
PlotShapes(Cross(C,e1)*shapeUpArrow,ColorUP,0,L);
PlotShapes(Cross(e1,C)*shapeDownArrow,ColorDN,0,H);
PlotShapes((C > e2 AND L < e2)*shapeUpArrow,ColorUP,0,L);
PlotShapes((C < e2 AND H > e2)*shapeDownArrow,ColorDN,0,H);


Plot(10,"",IIf(e1>e2,colorBlue,colorRed),styleOwnScale|styleNoLabel,0,750,0,-5,3);
Plot(20,"",IIf(C>e1, colorBlue,colorRed),styleOwnScale|styleNoLabel,0,750,0,-5,3);
Plot(30,"",IIf(C>e2, colorBlue,colorRed),styleOwnScale|styleNoLabel,0,750,0,-5,3);
Plot(40,"",IIf(C>M1, colorBlue,colorRed),styleOwnScale|styleNoLabel,0,750,0,-5,3);
_SECTION_END();
//===========================================================

Thanks

Happy :)
 
Last edited:

Tuna

Listen and act, don't ask it, it doesn't oblige
#99
Cool , great job


Sent from my iPhone using Tapatalk
 
Tuna,
simply amazed by the way you have shared your strategies. Had a look at the Fools system and looked at the 2016 signals (thanks Happyji for the code). Typically the signal last for 3-7 days and maybe if we add 1 lot everyday below/above the low/high of the previous day till the exit condition is hit almost doubles the points gained (~3500 points)

Still going through your other systems :)
 

Similar threads