Magic of ADX

U

uasish

Guest
#11
OK ,we are previledged to leverage your knowledge base.Raja as such what is the general performance without ADX.
 
Last edited by a moderator:

rpc

Active Member
#13
hi Raja
I would select second option to all your questions.Pls share ur knowledge on other indicators as well.
with best wishes
rpc
 
U

uasish

Guest
#16
I haven't coded much in ms.
I use Amibroker a lot more..
Can u clarify the entry trigger.

This is the Entry Trig:=
a:= LLV(RSI(14),20)< Ref(LLV(RSI(14),20),-2) AND LLV(RSI(14),20) < 35;
b:= If(Ref(a,-1) =1 AND a =0 ,1,0);
m:= Alert(b,10) AND WillR(14) < -95;
n:= If(Ref(m,-1) =1 AND m =0 ,1,0);
n;

Is entry trigger a, b, m or n?
or a weird combo of those?
Are you entering a new eod high after initial conditions are met?
What is the initial entry condition?
Basically
Buy=???
ex.
buy = a==1 and C>Ref(h,-1);
or buy=a==1 and H>Ref(h,-1);
or buy=a==1
buy=n==1
??
Kindly clarify.
I am zero in Ami.
It is n & n=buy=1 (is the trigger & buy price = next day close)
 
U

uasish

Guest
#19
Frankly i have not incorporated ADX ,however not in sync with you that it's Entry will improve with ADX ,that was the reason i wanted your participation to actually see whether it improves the Entry,the actual problem with this System is Exit ,it seems a challange ,where your active participation is solicited.How ever this crude System of mine is actually FREE in many sites.
 
U

uasish

Guest
#20
My Role model in MS coding Mr Jose Silva has simplified mine one in another forum,does this sgregates the variable part now.

Jose's transformation of my code.
.........................................8............
{ Asish Roy Chowdhury's entry signals }

{ Variables }
LLVpds:=20;
RSIpds:=14;
RSIback:=2;
RSImax:=35;
WillRpds:=14;
WillRmax:=-95;
AlertPds:=10;

{ Conditions }
RSIlow:=LLV(RSI(RSIpds),LLVpds);
RSItrend:=RSIlow<Ref(RSIlow,-RSIback)
AND RSIlow<RSImax;
RSIsignal:=RSItrend=0 AND Alert(RSItrend,2);
CompositeTrend:=Alert(RSIsignal,AlertPds)
AND WillR(WillRpds)<WillRmax;
CompositeSignal:=CompositeTrend=0
AND Alert(CompositeTrend,2);

{ Plot in own window }
CompositeSignal
................................8.............
This one Mine "Counter Trend"

a:= LLV(RSI(14),20)< Ref(LLV(RSI(14),20),-2) AND LLV(RSI(14),20) < 35;
b:= If(Ref(a,-1) =1 AND a =0 ,1,0);
m:= Alert(b,10) AND WillR(14) < -95;
n:= If(Ref(m,-1) =1 AND m =0 ,1,0);
 

Similar threads