PureBytes Links
Trading Reference Links
|
This msg appears to not have gotten thru.
Ken
-----Original Message-----
From: Ken Close [mailto:closeks@xxxxxxxx]
Sent: Monday, May 19, 2003 11:52 AM
To: AmiBroker List (amibroker@xxxxxxxxxxxxxxx)
Subject: Delay the Explore for RT Esignal Update
All: I tried the following code to introduce delays between ticker
"fetches" but, while it slowed things down a little, it is still too
fast for good updating.
Any ideas how to introduce 5 to 10 second delays levels? When I entered
values > 100000 in the loops below, the "endless loop" error message
would pop up.
Any ideas?
Ken
Filter=1;
Buy=1;
i = 1;
while (i<100000)
{ i = i + 1;
}
j = 1;
while (j<100000)
{ j = j + 1;
}
z = 1;
while (z<100000)
{ z = z + 1;
}
AddColumn(C,"Close",1.2);
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading!
Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/aM1XQD/od7FAA/uetFAA/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/
|