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...
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{...
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...
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...
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...