Recent content by jonkump

  1. J

    eSignal efs HTTP Object

    I don't believe the issue can be related to my http response since my endpoint is never hit.
  2. J

    eSignal efs HTTP Object

    Thanks for the reply. This has been quite frustrating. No, it is not a permission issue. The file is viewable in a web browser. I have tried tests on my localhost and a publicly visible domain. v.open() never returns true. Another interesting thing to note is that I have tried to set a...
  3. J

    eSignal efs HTTP Object

    Does anyone out there have a working example of an eSignal script reading a file from a http request? I am trying to do something like this var v = new HTTP("https://mydomain.com/test.txt"); if(v.open()) { while(!v.eof()) { debugPrintln(v.readln()); } }else{...
  4. J

    Sending option orders through the Sterling ActiveX API

    Does anyone out there have an example of an options order that will successfully fire through the sterling API? I am building my order like this... stiOrder.Symbol = "SPY 190111C259000"; stiOrder.StrikePrice = 259; stiOrder.Account = "DEMODS1649"; stiOrder.Side = "B"; stiOrder.Quantity = 1...
  5. J

    OTC Market Depth via Interactive Brokers API?

    Thanks for that info. Do you have a L2 api provider you could recommend?
  6. J

    OTC Market Depth via Interactive Brokers API?

    SMART seems to be a step in the right direction. The depth looks accurate compared to other L2s in terms of size and price, but it triggers the event without the market maker name. I guess it's better than nothing.... I am not familiar with the detail log. Can you point me to it? Currently, I...
  7. J

    OTC Market Depth via Interactive Brokers API?

    I have subscribed to OTC data through IB. I can see full market depth through the TWS platform, but I do not know how to make an api request to get the same data. The only successful request I have been able to make was when I set the exchange "ARCAEDGE". This only gives back very limited data...
Back
Top