thanx for every thing
but i search for better indicoter
i found fourmulae
when i enter and exist for example
Dircitional Down
Dircitional UP
Non-Dircitional
I max this formule with PS Adaptive Moving Average
=========================
Bullish:
If(L>Mov(C,20,S),2,0)
Bearish:
If(H<Mov(C,20,S),-2,0)
Highlight
Long:
Buy:=C>(Ref(HHV(H,1),-1)*(1.005));
Sell:=C<(Ref(LLV(L,1),-1)*(1.005));
A:=If(BarsSince(Buy)<BarsSince(Sell),1,If(BarsSince(Buy)>BarsSince(Sell),0,1));
A=1
Short:
Buy:=C>(Ref(HHV(H,1),-1)*(1.005));
Sell:=C<(Ref(LLV(L,1),-1)*(1.005));
A:=If(BarsSince(Buy)<BarsSince(Sell),1,If(BarsSince(Buy)>BarsSince(Sell),0,1));
A=0
Symbols
Buy:
Buy:=C>(Ref(HHV(H,1),-1)*(1.005));
Sell:=C<(Ref(LLV(L,1),-1)*(1.005));
A:=If(BarsSince(Buy)<BarsSince(Sell),1,If(BarsSince(Buy)>BarsSince(Sell),0,1));
A=1 AND Ref(A,-1)=0
Sell:
Buy:=C>(Ref(HHV(H,1),-1)*(1.005));
Sell:=C<(Ref(LLV(L,1),-1)*(1.005));
A:=If(BarsSince(Buy)<BarsSince(Sell),1,If(BarsSince(Buy)>BarsSince(Sell),0,1));
A=0 AND Ref(A,-1)=1
===================================================
[color=red:a0061aeaf8]I want to convert this Expert Advisor to Explorer? How[/color]