PureBytes Links
Trading Reference Links
|
Thanks, Graham.
--- In amibroker@xxxxxxxxxxxxxxx, "Graham" <gkavanagh@xxxx> wrote:
> You could just use MA(V,20) to see the trend and find the values
when your
> buy signals occur
> VolBuy = valuewhen(buy,MA(V,20));
> VolSell = valuewhen(sell,MA(V,20));
>
>
> If you need to sum the volumes between your signals?
> BuyBar = valuewhen(buy,barindex());
> SellBar = valuewhen(sell,barindex());
> Bars = SellBar-BuyBar;
> SumVol = sum(V,Bars-1);
>
>
> Cheers,
> Graham
> http://groups.msn.com/ASXShareTrading
> http://groups.msn.com/FMSAustralia
>
> -----Original Message-----
> From: Joe [mailto:run_for_your_life2003@x...]
> Sent: Sunday, 23 November 2003 1:14 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Volume Accumulation (buy signals to sell
signals)
>
>
> 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@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> 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/
------------------------ 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/
|