Dear members,
I joined this beautiful forum just 4 months ago and learned a lot about system based trading. Certainly, a system based trading is more scientific and accurate than the trading based upon intutions.
I am starting this new thread for the newbies like me to share their experiences about the new indicators and systems specially for "METASTOCK". Metastock is the best software for this purpose because of its simplicity and excel like formulas.
I am sharing my first indicator. Indicator is simple and may not be as perfect as developed by experts. But it seems good for nifty and future stocks. Still there is great scope for the improvement of the same. I am posting the same to get some valuable tips to improve this from the learned members of this group.
{BASU'S POINT THEORY: I use this formula for comparisons etc. in place of percentages.}
bpt:=If(O>3900,O*.003,
If(O>3100,O*.0035,
If(O>2300,O*.004,
If(O>1800,O*.0045,
If(O>1300,O*.005,
If(O>1000,O*.0055,
If(O>700,O*.006,
If(O>500,O*.0065,
If(O>300,O*.007,
If(O>200,O*.008,
If(O>100,O*.009,
If(O>65,O*.01,
If(O>30,O*.011,O*.0125)))))))))))));
a:=If(C>O+5*bpt,H+C-O-L,
If(C>O+2*bpt,H-L,
If(C>O,C-L,
If(C>O-2*bpt,L-O,
If(C>O-5*bpt,L-H,L+C-O-H)))));
a1:=Mov(Ref(a,-2),3,S);
a2:=Mov(a,2,S);
aa:=(a2+a1);
bb:=If(aa<-10*bpt,a2-a1,
If(aa<-5*bpt,a1-a2,
If(aa<5*bpt,Ref(a,-1),
If(aa<10*bpt,a1-a2,a2-a1))));
a3:=If(a<-13*bpt,H+a*.7,
If(a<-8*bpt,H+a*.8,
If(a<-5*bpt,C-a*.6,
If(a<-2*bpt,O-a*.8,
If(a<0,a+(L+H)/2,
If(a<2*bpt,a+(L+H)/2,
If(a<5*bpt,C-a*.8,
If(a<8*bpt,O-a*.6,
If(a<13*bpt,L+a*.8,L+a*.7)))))))));
a4:=If(aa<-13*bpt,a3-bb*.3,
If(aa<-8*bpt,a3-bb*.5,
If(aa<-5*bpt,a3-bb*.8,
If(aa<-2*bpt,a3-bb*.5,
If(aa<2*bpt,a3-bb*.3,
If(aa<5*bpt,a3-bb*.5,
If(aa<8*bpt,a3-bb*.8,
If(aa<13*bpt,a3-bb*.5,a3-bb*.3))))))));
a5:=If(bb<-13*bpt,a4-aa*.2,
If(bb<-8*bpt,a4+aa*.2,
If(bb<-5*bpt,a4-aa*.3,
If(bb<-2*bpt,a4+aa*.3,
If(bb<2*bpt,a4-aa*.5,
If(bb<5*bpt,a4+aa*.3,
If(bb<8*bpt,a4-aa*.3,
If(bb<13*bpt,a4+aa*.2,a4-aa*.2))))))));
a5{a4 is also good indicator. if a5<l = buy signal at next bar's suitable prices. if a5>h = sell signal at next bar'suitable prices.}
BASUDEO