PureBytes Links
Trading Reference Links
|
Hi Jason,
First let me thank you for your help,
Let me try to explain what I am trying to do.
I will use intel for a example, I am using a weekly chart.
starting from 12/05/03 to 7/07/03 intel did one float turnover.
It also did one from 2/07/03 to 7/07/03.( it seems to do one complete
float turnover every 22 to 24 weeks for the last six float turnovers)
I used a spreadsheet to total the volume.
I would like to place shapecircle only at the point of each float
turnover to mark the spot.
Do we need to divided the sum of volume by the float, for a float
turnover?
Anyway thank once you again,
Dennis
--- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> Dennis,
> the chances of the sum of volume to match the float is very slim
indeed.
> Perhaps have the sum exceed the float??
>
> float=630000000;
> x=Sum(Volume,220);
> plot(c,"Price",4,64);
> PlotShapes(IIf(x>float,shapeCircle,shapeNone),5);
>
> Regards,
> Jayson
> -----Original Message-----
> From: theoldchartreader [mailto:theoldchartreader@x...]
> Sent: Sunday, December 07, 2003 10:26 AM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Float and Sum question
>
>
> Hi,
> I would like to plot a shapecircle every time the sum of volume
> equals the float?
>
> What do I need to do?
>
>
> float=630000000;
> Sum(Volume,220);
>
>
> thank you,
> Dennis
>
>
> Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
>
>
> 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 the Yahoo! Terms of Service.
------------------------ 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/
|