I am an individual, with no intent on redistribution. Do it for fun.
I called tech support and they mentioned that you might help me. I have esignal premier, with ActiveX Desktop API part also. I use Visual Basic 6.0 to transport data to Sql server 2000. I use a table on my sql server to hold different stock symbols (#325 records). My problem occurs when I set my code loop to cycle thru the different stocks, half-way thru I get an error message from esignal saying "My stock ticker limit has been reached, at midnight it will be reset (something like that)"; and my program loop is stopped.
Now, I don't use esignal the program much, yet, except to visually see the charts. But I don't care to keep track of the last
'x' number of stocks I've looked at ; as represented (i assume) in the 'data manager/Data/Symbols' form. Esignal's website says :
"eSignal Premier -- Includes everything in eSignal Basic plus our Advanced Charting package. Unlimited number of symbols, viewing 200 at a time. Add access to any futures exchanges. Add on 500 or 1,000 symbols viewing at a time"
And I'm interest in the "unlimited number of symbols" phrase.
That is my general question: Am I limited to 200 stocks that I can cycle thru in computer language, or does this mean I have to purchase more symbols?
technical portions (I have the developer reference 'word' file):
to pull individual stocks I write the code:
historyHandle = esignal.RequestHistory(UserStock, TimeFrameFromUser, btBARS, LocalBarsWanted, -1, -1)
and directly above that line of code I've tried to clear esignal data history with
esignal.ClearSymbolCache
esignal.ReleaseAllHistory
and at the end of the loop I
esignal.ReleaseHistory (historyHandle)
And these four step occur each new stock ticker that I want to pull
Thanks for help. It is nothing urgent, but I'm curious. Any advice would be appreciated.
Brandon Wallace
I called tech support and they mentioned that you might help me. I have esignal premier, with ActiveX Desktop API part also. I use Visual Basic 6.0 to transport data to Sql server 2000. I use a table on my sql server to hold different stock symbols (#325 records). My problem occurs when I set my code loop to cycle thru the different stocks, half-way thru I get an error message from esignal saying "My stock ticker limit has been reached, at midnight it will be reset (something like that)"; and my program loop is stopped.
Now, I don't use esignal the program much, yet, except to visually see the charts. But I don't care to keep track of the last
'x' number of stocks I've looked at ; as represented (i assume) in the 'data manager/Data/Symbols' form. Esignal's website says :
"eSignal Premier -- Includes everything in eSignal Basic plus our Advanced Charting package. Unlimited number of symbols, viewing 200 at a time. Add access to any futures exchanges. Add on 500 or 1,000 symbols viewing at a time"
And I'm interest in the "unlimited number of symbols" phrase.
That is my general question: Am I limited to 200 stocks that I can cycle thru in computer language, or does this mean I have to purchase more symbols?
technical portions (I have the developer reference 'word' file):
to pull individual stocks I write the code:
historyHandle = esignal.RequestHistory(UserStock, TimeFrameFromUser, btBARS, LocalBarsWanted, -1, -1)
and directly above that line of code I've tried to clear esignal data history with
esignal.ClearSymbolCache
esignal.ReleaseAllHistory
and at the end of the loop I
esignal.ReleaseHistory (historyHandle)
And these four step occur each new stock ticker that I want to pull
Thanks for help. It is nothing urgent, but I'm curious. Any advice would be appreciated.
Brandon Wallace
Comment