Announcement

Collapse
No announcement yet.

Related issue

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Related issue

    This stopped working as well (C# app):

    iHistoryHandle = eSignal.get_RequestHistory(sSymbol, "D", IESignal.barType.btBARS, 1, -1, -1);

    dtStart = DateTime.Now;
    while( eSignal.get_IsHistoryReady(iHistoryHandle) == 0 )
    {
    Application.DoEvents();
    if( DateTime.Now > dtStart.AddSeconds(10) )
    break;
    }

    Always times out.

    Everything worked fine as of Thursday. Just my luck I was hoping to demo this tomorrow. I would be most appreciative if you could help keep me from looking like a complete idiot tomorrow.

    Kevin

  • #2
    After calling get_requestHistory() for for the OnBarsReceived event before attempting to retrieve bar values from the API.

    Comment

    Working...
    X