PureBytes Links
Trading Reference Links
|
Hi,
How could I create or import into AB "down volume"?
I mean, it's calculated by an external program:
if(Price2<Price1) {
DownVolume = DownVolume + (Price2.Volume-Price1.Volume);
}
else {
UpVolume = UpVolume + (Price2.Volume-Price1.Volume);
}
And I would like to analyse both of these Volumes in AB.
Daily:
-If I use OpenInt column as VolumeDown, then it's working.
Minute by minute and week by week:
-I can't use OpenInt, because it can't summe minute by minute, and
week by week.
(Daily:
DayMonday.OpenInt = 100;
DayTuesday.Openint = 110;
...
DayFriday = 105;
If I change the screen weekly, then
ThisWeek.OpenInt = 105;
And what I would see: 100+110+...+105)
Any Idea?
BR, Zoli.
------------------------ 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
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|