PureBytes Links
Trading Reference Links
|
TJ,
I'm using a ABTool-managed, externally stored table to store some
calculated data for each symbol. When I try to display a value in the
column from an indicator, I see a rather strange behavior. Say my
indicator is something like following pseudo-code -
----------
handle = LoadTableAndGetHandle();
col = GetWhichColToDisplay();
val = 0; // Value to display
for( i = 0; i < BarCount; i++ ) {
val = GetValFromTable(handle, i, col); // i being the row
}
-----------
When I first time insert this indicator, a plot gets created with
values shown. However as soon as I click somewhere else in the chart,
all values displayed drop to zero (may be because I initialized it to
zero?). Then onwards, if I click "Edit Formula" again and hit Apply,
the values flash on the chart for a fraction of a second, and then
disappear.
I'm not sure if this is ABTool problem (I've posted a question on
their list to figure out what the best way to display the values is),
but what could cause the chart to behave this way? I've tried a
number of things, such as defining handle as "handle[0]" to see if it
loads the file only once, or just loading it inside the loop only
when "i == 0" and then reusing the handle value, etc, but to no avail.
Any ideas?
TIA,
Jitu
------------------------ 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/l.m7sD/LIdGAA/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/
|