Please help

#1
Vrg=EMA(V,Vlp);
St = StDev(Vrg,Vlp);
Vp3 = Vrg + (3*st);
Vp2 = Vrg + (2*st);
Vp1 = Vrg + (1*st);
Vn1 = Vrg -(1*st);
Vn2 = Vrg -(2*st);

cond A = V>Vp2;
cond B = V>Vp1;
cond D = V>Vrg;
cond E = V<Vrg AND V>Vn1;
cond F = V<Vn1;
cond G = V<Vn2;

In between each condition such as A and B , B and D , D and E,.........
the value kind like too wide. I try to correct by change ( +2*st) to be ( +1.5*st) or (+1*st) to be (+0.5*st).....etc.

It doesn't work. Any master please advise. I need more conditions in between.
 

stock72

Well-Known Member
#2
1. what is V and Vlp.

2. why to have s system with more indicator / complicated.


the need is Money management and discipline first .. u can pick any system and trade.

Vrg=EMA(V,Vlp);
St = StDev(Vrg,Vlp);
Vp3 = Vrg + (3*st);
Vp2 = Vrg + (2*st);
Vp1 = Vrg + (1*st);
Vn1 = Vrg -(1*st);
Vn2 = Vrg -(2*st);

cond A = V>Vp2;
cond B = V>Vp1;
cond D = V>Vrg;
cond E = V<Vrg AND V>Vn1;
cond F = V<Vn1;
cond G = V<Vn2;

In between each condition such as A and B , B and D , D and E,.........
the value kind like too wide. I try to correct by change ( +2*st) to be ( +1.5*st) or (+1*st) to be (+0.5*st).....etc.

It doesn't work. Any master please advise. I need more conditions in between.
 

Similar threads