API Support Forum
User Profile

Viewing User Profile for: DAronow1742


About

Sep 14, 2015 09:28 AM

Jan 06, 2020 09:17 AM

Jan 06, 2020 09:17 AM



Post Statistics
DAronow1742 has contributed to 10 posts out of 5593 total posts (0.18%) in 3139 days (0.00 posts per day).

20 most recent posts:

API Support » Unable to request/lookup contract for Liffe Robusta Coffee Jan 06, 2020 @ 09:17 AM (Total replies: 5)

Chris thanks for clarification -- that explains my problem.
David Aronow


API Support » Unable to request/lookup contract for Liffe Robusta Coffee Jan 06, 2020 @ 09:08 AM (Total replies: 5)

I believe it's the dev environment.
David Aronow


API Support » Unable to request/lookup contract for Liffe Robusta Coffee Jan 03, 2020 @ 08:38 PM (Total replies: 5)

Also noted I cannot lookup any of the following contracts (same issue no contracts found):

Liffe White Sugar
ICE Sugar
ICE Orange Juice

I'm wondering if these are just not supported on the demo server?
David Aronow


API Support » Unable to request/lookup contract for Liffe Robusta Coffee Jan 03, 2020 @ 08:04 PM (Total replies: 5)

I am unable to lookup symbols for Liffe Robusta Coffee futures using the new Gain API (although I had the same problem in the old OEC API). No other symbols I've seen give this error. The symbol lookup works but always returns zero contracts in the Contracts array event arg in the OnSymbolLookupReceived event.

Here's an example of my lookup request. In place of the hardcoded "COF10" I've tried "COF" and I even tried searching using WithDescription("Robusta") without any results. Also tried changing WithSymbol to WithBaseSymbol, didn't work either. Can you please provide a working call to lookup the Robusta Coffee contract?

client.Contracts.Lookup.ByCriteria(
new SymbolLookupRequestBuilder()
.WithResultCount(50)
.WithSymbol("COF10", TextSearchMode.AnyInclusion)
.WithExpression(new SymbolLookupExpressionBuilder()
.Push(new ContractTypeCriterion(ContractType.Electronic))
.Push(new ContractKindsCriterion(new[] { ContractKind.Future }))
.Push(SymbolLookupExpressionOperator.And)
.Build())
.Build());


Thanks!
Dave
David Aronow


API Support » Multiple client connections Oct 08, 2015 @ 07:17 PM (Total replies: 4)

Are there restrictions on multiple connections from different instances of the application on different machines? Can I run my application in one mode from one PC and in a different mode from another PC using the same login?

David Aronow

API Support » Change sim account balance Oct 01, 2015 @ 09:42 PM (Total replies: 2)

My sim account is DEMO055318 if you can do it from the server side. Thx.

David Aronow

API Support » Change sim account balance Oct 01, 2015 @ 09:30 PM (Total replies: 2)

My sim account balance is too low to simulate what I want to test -- is there some way to raise the simulated balance to a higher number (say $500,000) just to be able to run tests without worrying about running into margin problems?

David Aronow

API Support » DesiredResultCount ignores setting only returns 50 contracts Sep 29, 2015 @ 06:47 AM (Total replies: 2)

I'm trying to retrieve all Brent Crude contracts like this (C# API):

var sl = new SymbolLookupCriteria();
sl.Mode = SymbolLookupMode.SymbolStartsWith;
sl.DesiredResultCount = 1000;
sl.ContractKinds.Add(ContractKind.Future);
sl.SearchText = "NSEA-M";
OECClient.Global.SymbolLookup(sl);


In the callback however I only get 50 contracts and the DesiredResultCount is set to 50. Any idea what's going on? Is there some other setting I'm missing?

Dave

David Aronow

Market Data » Unable to load ContractsList for FGBL or FGBS Sep 15, 2015 @ 01:34 PM (Total replies: 2)

That fixed it thanks!

David Aronow

Market Data » Unable to load ContractsList for FGBL or FGBS Sep 15, 2015 @ 10:23 AM (Total replies: 2)

I am unable to get any results back from SymbolLookup calls for FGBL or FGBS. I have not subscribed to data for the exchange as I do not need the data. Is this why the contracts are not available?

If so, how can I place orders for these contracts? I don't require data as I am trading on a daily basis. Is there a way I can get the contracts directly by their full symbol?

Thanks.

David Aronow