Feedback » Account for OEC Trader Demo has not been renewed Nov 15, 2010 @ 09:36 AM (Total replies: 0) | |||||
Hi, Could you please tell me what is happened with OEC Trader Demo? Why my account has not been renewed? Will it be possible to use OEC Trader Demo in future? Thanks Oleg |
|||||
API Support » Empty charts Aug 05, 2009 @ 06:15 AM (Total replies: 1) | |||||
Hi. After updating OEC Trader Demo to version 3.4.0.1 charts for any symbols are empty. Quotes are receiving OK. Can you give any advice how to fix this problem? |
|||||
API Support » OEC.API.Price.OpenInterest May 07, 2009 @ 03:06 PM (Total replies: 2) | |||||
I'm trying to use OEC.API.Price.OpenInterest property - but it always return 0 (zero). Code example: Dim strT As String, contract As OEC.API.Contract Dim price As OEC.API.Price OECClient = OEC.API.OECClient.CreateInstance(True) For Each contract In OECClient.ContractGroups("Indices").Contracts strT = contract.Symbol price = contract.CurrentPrice If Not IsNothing(price) Then Debug.Print(strT & " OI=" & price.OpenInterest) End If Next Is it required to do something special to get correct open interest value from OEC.API.Price object? And one more question: Where can I find description (conditions) of using deployment service for custom indicators? Is it really works or just for demo purposes? Thank you. |