PureBytes Links
Trading Reference Links
|
Henry1224,
Visually very appealing and easy to read which allows confident decision making plus I like multicolor and layering indicators adds another dimension to analysis... Thanks for sharing...
--- In equismetastock@xxxxxxxxxxxxxxx, "Henry" <henry1224@xxx> wrote:
>
> here are two indicators that define buying vs selling
>
> { buy sell Volume}{Positive Volume is buying volume, negative volume is selling volume}
> A:=Input("length",1,100,1);
> B:=Input("Ma Length",2,100,10);
> BP:=(H-O)+(C-L);
> SP:=(O-L)+(H-C);
> BPP:=Mov(V,A,S)*Mov(BP/(BP+SP),A,S); {plot as Green histogram}
> SPP:=Neg(Mov(V,A,S)*Mov(SP/(BP+SP),A,S)); {Plot as red Histogram}
> BPM:=Mov(BPP,B,S);
> SPM:=Mov(SPP,B,S);
> UZ:=Mov(BPP,34,S)+(1.3185*Stdev(BPP,34));
> LZ:=Mov(SPP,34,S)-(1.3185*Stdev(SPP,34));
> BPP;SPP;BPM;SPM;UZ;LZ;
>
> {% buysell double smoothed based on Percentage of true range }{Positive numbers are percentage of buyers, negative numbers are Percentage of sellers}
> A:=Input("length",1,100,1);
> BP:=Mov(Mov(Mov(((((((H-O)+(C-L))/(H-L)))/2))*100,A,S),2,S),2,S); {Plot as Green Histogram}
> SP:=Mov(Mov(Mov(Neg((((((H-C)+(O-L))/(H-L)))/2))*100,A,S),2,S),2,S); {Plot as Red Histogram}
> UZ:=Mov(BP,34,S)+(1.3185*Stdev(BP,34));
> LZ:=Mov(SP,34,S)-(1.3185*Stdev(SP,34));
> BP;SP;UZ;LZ;
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, "Lionel Issen" <lissen@> wrote:
> >
> > Henry, I am not a good programmer, can you post some hints on how to do
> > this?
> >
> >
> >
> > Lionel
> >
> >
> >
> > From: equismetastock@xxxxxxxxxxxxxxx [mailto:equismetastock@xxxxxxxxxxxxxxx]
> > On Behalf Of Henry
> > Sent: Saturday, March 06, 2010 3:19 PM
> > To: equismetastock@xxxxxxxxxxxxxxx
> > Subject: [EquisMetaStock Group] Re: TRsV ?
> >
> >
> >
> >
> >
> > I guess that the formula will tell you what amount of volume would take per
> > tick for that day, Since volume changes daily, that would hardly give you
> > any help.
> >
> > It would be of more use to track the percentage of buyers vs sellers over a
> > period of time to find overbought and oversold markets
> >
> > --- In equismetastock@xxxxxxxxxxxxxxx
> > <mailto:equismetastock%40yahoogroups.com> , formulaprimer <no_reply@>
> > wrote:
> > >
> > > Anyone find any use for this indicator called?
> > >
> > > TRsV
> > >
> > > V / ATR( 1 );
> > >
> >
>
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
equismetastock-digest@xxxxxxxxxxxxxxx
equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|