PureBytes Links
Trading Reference Links
|
Thanks, DT...much appreciated!
--- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS"
<TSOKAKIS@xxxx> wrote:
> Joe,
> here is the total and the partial accumulation of volume
> Buy=Cross(StochD(),20);
> Sell=Cross(90,StochD());
> Buy=ExRem(Buy,Sell);Sell=ExRem(Sell,Buy);
> acc=Cum((BarsSince(Sell)>BarsSince(Buy))*V);
> Plot(acc,"Total accV",1,1);
> acc1=Sum((BarsSince(Sell)>BarsSince(Buy))*V,BarsSince(Buy));
> Plot(acc1,"Partial accV",4,2);
> Dimitris Tsokakis
> --- In amibroker@xxxxxxxxxxxxxxx, "Joe"
<run_for_your_life2003@xxxx>
> wrote:
> > I am trying to find a way to find the accumulation of volume
> between
> > my buy and sell signals on both daily charts and weekly charts.
> >
> > I have looked for several ways to do this in the AFL Library but
> > can't quite find what I exactly need.
> >
> > I am looking for trend for trend volume between signals.
> >
> > Can I get any suggestions what way I should be able do this???
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|