my favourite trading system

KelvinHand

Well-Known Member
#12
Thanks for the try. So u think it never can be done into ami?
Nope. It not amibroker issue.
It the programmer issue.

See this MT4 function:

//-- pass by reference
void svector(double &A[][],double l,int n,double &V[])
{

int cp,i1,i,j,k;
double B[200][200]; //-- This is mutiple array, but AFL use single array
double c;
double w[]; ArrayResize(w,n); //double *w=new double[n]; //double w[MaxLen-MaxCatLen];
Equal(B,A);
for (i=0;i<=n-1;i++) B=B-l; //How to do in AFL
cp=0;

//-- There are so many looping, will reduce the performance
for (k=0;k<=n-2;k++)
for (i=k+1;i<=n-1;i++)
{
if (B[k][k]==0) //(B->m[k][k]==0)
{
for (i1=0;i<=n-1;i++)
{
w[i1]=B[i1][k]; //w[i1]=B->m[i1][k];
B[i1][k]=B[i1][k+1]; //B->m[i1][k]=B->m[i1][k+1];
B[i1][k+1]=w[i1]; //B->m[i1][k+1]=w[i1];
}
cp=cp+1;
}
c=1.0*B[k]/B[k][k]; //c=1.0*B->m[k]/B->m[k][k];
for (j=0;j<=n-1;j++)
{
B[j]=B[j]-B[k][j]*c; //B->m[j]=B->m[j]-B->m[k][j]*c;
}
}
V[n-1]=1;
c=1;
for (i=n-2;i>=0;i--)
{
V=0;
for (j=i;j<=n-1;j++) V= V-B[j]*V[j]; //V= 1.0*V-B->m[j]*V[j];
V=V/B; //V=V/B->m;
c = c+V*V; //c = c+1.0*V*V;
}
for (i=0;i<=n-1;i++) V= V/MathSqrt(c);

}


There could be possible to code in the AFL , but a lot of deviation from the above need to carry out.
Once change will introduce new problem and new complexity



See the complexity. This can only be done in DLL using C++.

The time n effort is huge to the programmer.

After re look again on Plug In SSA code - I had to abandon this project
 
Last edited:
#14
Hi friends

First let it be clear.
It is not that I wish to not post-
it is just I need permission from its owner.

Second
For HAPPY

HTML:
Yes instead of just what it is, it will be better to know why it is your favorite . . .

Does it have very high win / loss ratio or does it have high RRR
or is it that it has clear targets marked
or you like the concept of scaling out at 70% of the profit targets
HERE ARE THE ANSWERS

HTML:
It is my favourite becauise it helped me as a novice.HELPED TO REDUCE LOSSES.
1.It is a complete trading system showing entry,stoploss,trailing stop,target.
2.IT SUCCEEDS 65% OR MORE best on EOD timeframe.
3.It is so easy to quantify reward/risk ratio.
4.a very visible stoploss saves headaches most often.clear target helps take money off the table.
If we can measure risk,if we can locate barrier from where significant risk begins,you are in better control.
5.since it doesnt work so good on intraday,i was forced to go for eod swing trades-it saved my money.
6.it shows trend in action readily.when in clear visible trend,you can trade with confience.
7.target 70% of total reward range is suggested by my friend as i complained my trades dont reach target level.
8.less confusion.
 
#16
Hi friends

First let it be clear.
It is not that I wish to not post-
it is just I need permission from its owner.

Second
For HAPPY

HTML:
Yes instead of just what it is, it will be better to know why it is your favorite . . .

Does it have very high win / loss ratio or does it have high RRR
or is it that it has clear targets marked
or you like the concept of scaling out at 70% of the profit targets
HERE ARE THE ANSWERS

HTML:
It is my favourite becauise it helped me as a novice.HELPED TO REDUCE LOSSES.
1.It is a complete trading system showing entry,stoploss,trailing stop,target.
2.IT SUCCEEDS 65% OR MORE best on EOD timeframe.
3.It is so easy to quantify reward/risk ratio.
4.a very visible stoploss saves headaches most often.clear target helps take money off the table.
If we can measure risk,if we can locate barrier from where significant risk begins,you are in better control.
5.since it doesnt work so good on intraday,i was forced to go for eod swing trades-it saved my money.
6.it shows trend in action readily.when in clear visible trend,you can trade with confience.
7.target 70% of total reward range is suggested by my friend as i complained my trades dont reach target level.
8.less confusion.

Hi Mr. Ford,

Nice benefits given.. Hope u get permission from ur friend.. and gift the members of this forum a nice formula for trading.

Thanks,
Kumar
 

XRAY27

Well-Known Member
#20
ekdam sahi kaha sir agar kisi ko jaban di thi to post kyon kiya
his words are very much true and thanks for the support to my post in same lines
 

Similar threads