Keyboard Shortcuts
Likes
- Twsapi
- Messages
Search
Re: Anyone has code to show all option chain names for a symbol?
Hey, I use these functions to get the options chain:
?
First, create a Contract for the underlying, as well as 2 vectors to capture options chain details (one of type std::string to retrieve expiry dates, and the other of type double to retrieve strike prices).
?
First, get the underlying contract ID to retrieve the options.
?
In the callback for reqContractDetails, we retrieve the contract ID and assign it to our underlying contract.
?
Once you have the conId, you can retrieve the options chain.
?
The response will be returned in the following callback:
?
|
Late Prints don't show up when I call reqHistoricalTicks()
I am trying to download all tick data for SPY
?
?m_pClient->reqHistoricalTicks(19001, ContractSamples::SPY_ETF(), TimeCode, "", 1000, "TRADES", 1, true, TagValueListSPtr());
?
I am getting all the data for 9:30 -> 16:00 hours Using this method
?
?
//! [tickbytickalllast]
void TestCppClient::tickByTickAllLast(int reqId, int tickType, time_t time, double price, int size, const TickAttrib& attribs, const std::string& exchange, const std::string& specialConditions) { ?
?
?
BUT when I look they are some prints that are late but don't show up calling reqHistoricalTicks()? (beyond 16:00 hours) See attached image.
?
Anyone know how I can get all the late prints that come after 16:00 hours???
?
?
?
?
? ?? |
Re: How to programatically approve a transaction: Security is under Surveillance
Glad that worked, Pranav, and thank you for sharing the solution. You asked about files where you can read TWS/IBGW settings from. Each account folder under the TWS/IBGW installation folder (the random looking folder names with 40 lower case characters) contains a file called tws.xml (for TWS), ibg.xml (for IB Gateway), or both depending on what you used for login. Those files contain all configuration and layout information. There are also daily backup copies such as tws.Wed.xml. Unfortunately, those files are encrypted and, in order to decrypt them, you'd have to log into TWS/IBGW:
The XML documents are length and have sections for many different layout and operational settings. Among them sections for API "Settings", "Precautions", and "News Configuration". I always wanted to make some tools to automate the monitoring and changing of TWS/IBGW configurations as well as TWS tabs so that I can guarantee consistency between multiple accounts. Reading and updating the XML files once decrypted is not that hard, but the decryption and recovery steps have to be done manually at this point (as far as i know). ´³¨¹°ù²µ±ð²Ô ? ? ? On Thu, Mar 27, 2025 at 11:40 AM, Pranav Lal wrote:
|
Re: How to programatically approve a transaction: Security is under Surveillance
¿ªÔÆÌåÓýHi all, ? Problem solved. I had to use a key value pair when specifying the string in the advancedErrorOverride property. advancedErrorOverride="8229,SURVEILLANCE" ? Pranav |
Re: How to programatically approve a transaction: Security is under Surveillance
¿ªÔÆÌåÓýHi ´³¨¹°ù²µ±ð²Ô, Thanks for the welcome. <smile ? I made the changes but no go. Here is the log output. ERROR -1 1743033608079 2104 Market data farm connection is OK:hfarm ERROR -1 1743033608080 2107 HMDS data farm connection is inactive but should be available upon demand.apachmds ERROR -1 1743033608080 2158 Sec-def data farm connection is OK:secdefhk 56989180,SRF,STK,,,0,,,NSE,NSE,INR,SRF,SRF,False,,,,combo: eason:Security is under Surveillance Measure - The scrip PE is greater than 50 for the previous 4 trailing quarters.<br><br><br>Would you like to continue?. {"rejects":[{"buttons":[{"options":[{"fixstr":"8229=SURVEILLANCE","text":"Yes, transmit the order."}],"style":"chk"}],"id":2,"text":"Security is under Surveillance Measure – The scrip PE is greater than 50 for the previous 4 trailing quarters. <br><br>Would you like to continue?","textsep":"125"}],"version":"1.0"} ? <snip I'd check that the option API -> Settings -> "Show advanced order reject UI always" is unchecked. PL] Is there a configuration file where I can check this value? ? I use a screen reader and given that TWS uses its own jvm, the screen reader is unable to talk to java unless I can put the java access bridge into the jvm. ? Pranav |
Re: How to programatically approve a transaction: Security is under Surveillance
Welcome Pranav! I'd check that the option API -> Settings -> "Show advanced order reject UI always" is unchecked. Also, select all bypass options you are comfortable with in API -> Precautions. And your thought about the advancedErrorOverride field of the Order class may help. The documentation says that "advancedErrorOverride accepts a comma-separated list with parameters containing error tags. This list will override the mentioned errors and proceed with the order placement". From your log it sounds like you could try setting the field to "8229". ´³¨¹°ù²µ±ð²Ô ? ? ?
On Wed, Mar 26, 2025 at 10:09 AM, Pranav Lal wrote:
Hi all, |
How to programatically approve a transaction: Security is under Surveillance
Hi all,
Sorry about the poor subject line. I am trying to buy a stock and am getting the following error in my logs. 56989180,SRF,STK,,,0,,,NSE,NSE,INR,SRF,SRF,False,,,,combo: eason:Security is under Surveillance Measure - The scrip PE is greater than 50 for the previous 4 trailing quarters.<br><br><br>Would you like to continue?. {"rejects":[{"buttons":[{"options":[{"fixstr":"8229=SURVEILLANCE","text":"Ye s, transmit the order."}],"style":"chk"}],"id":29,"text":"Security is under Surveillance Measure – The scrip PE is greater than 50 for the previous 4 trailing quarters. <br><br>Would you like to continue?","textsep":"125"}],"version":"1.0"} How do I get around this? Is the answer to use the advancedErrorOverride property of the order object? If yes, what do I enter as its value? Pranav |
is reqHistoricalData() returning partial trade bars?
Hi, I seem to be witnessing the following behaviour: if I request historical data with a timestamp?that is not aligned with the trade bar size I'm requesting, the last trade bar will be a partial trade bar, 'up to' the requested timestamp. Is this a correct assumption? To be a bit specific, for example requesting 2 minute trade bars with an endDateTime of 15:02:30 will return a trade bar for 15:02:00 but contain data only for the half minute period between 15:02:00 - 15:02:30. An alternative would be that the API only returns complete trade bars, which?seems not to be the case. ?kos |
Re: FX/CASH Pegged to Midpoint Order
On Mon, Mar 24, 2025 at 10:08 PM, ´³¨¹°ù²µ±ð²Ô Reinold wrote:
For what it's worth I've been able to use PEGMID with a some directly routed orders, e.g. to NYSE. I vaguely recall seeing IBKR documentation that says which exchanges support it, but I wasn't able to dig it up with a quick search. |
Re: FX/CASH Pegged to Midpoint Order
The ContractDetails class contains the orderTypes field that lists all valid order types for an instrument. PEGMID is not listed for the CASH instruments I monitor, so I guess "Pegged to Midpoint" is not available. I see PEGMID only in ContractDetails objects for STK instruments with exchange = "SMART". ´³¨¹°ù²µ±ð²Ô ? On Mon, Mar 24, 2025 at 08:29 PM, John wrote:
|
Re: Using Wall Street Horizon API w/ TWS-API
All,
?
I am continuing to work with the Wall Street Horizon API but receiving the following error message.? ?
?
Error. Id: 1101 1742678739416 Code: 10283 Msg: Failed to request WSH event data.Could not verify account AdvancedOrderRejectJson: ?
?
--
? ? data = app.reqWshMetaData(1100)
? ? time.sleep(5) ? ? wsh_object = WshEventData()
? ? wsh_object.fillWatchlist = True ? ? wsh_object.fillPortfolio = True ? ? wsh_object.fillCompetitors = True ? ? wsh_object.filter = '{"country": "All","watchlist": ["8314"],"limit_region": 10,"limit": 10,"wshe_ed": "true"}'? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??
? ? app.reqWshEventData(1101, wsh_object, app.serverVersion())
?
?# Full output of error:
?
Calling reqWshEventData.... 2025-03-22 14:25:43,123 - INFO - REQUEST reqWshEventData {'reqId': 1101, 'wshEventData': 1696605632032: WshEventData. ConId: , Filter: {"country": "All","watchlist": ["8314"],"limit_region": 10,"limit": 10,"wshe_ed": "true"}, Fill Watchlist: 1, Fill Portfolio: 1, Fill Competitors: 1, 'MIN_SERVER_VER_WSH_EVENT_DATA_FILTERS_DATE': 199} 2025-03-22 14:25:43,124 - INFO - SENDING reqWshEventData b'\x00\x00\x00\x81102\x001101\x002147483647\x00{"country": "All","watchlist": ["8314"],"limit_region": 10,"limit": 10,"wshe_ed": "true"}\x001\x001\x001\x00\x00\x002147483647\x00' Error. Id: 1101 1742678739416 Code: 10283 Msg: Failed to request WSH event data.Could not verify account AdvancedOrderRejectJson: 2025-03-22 14:25:48,126 - INFO - disconnecting 2025-03-22 14:25:48,127 - INFO - ANSWER connectionClosed {} 2025-03-22 14:25:48,129 - INFO - Disconnected from IB API. 2025-03-22 14:25:48,133 - INFO - Disconnected from IB API. ?
?
Thank you for any info.
?
|
Re: Upcoming stock earnings dates
I see that the subscription fee for the original poster was $2.50 USD back in 2013.? I signed up for the Wall Street Horizon API and the fee looks to be $50 / USD per month.? Does this sound right to everyone or are there different pricing tiers that I might be missing?? Thanks for any info on the current pricing.
?
? |
Re: Closing positions
You don't have to adjust quantities manually. As IBKR support already told you, you can request updates for all relevant information about the account, the positions, and open orders so that your client application can calculate quantities for orders as you see fit. You would probably monitor the value of a position as it increases or decreases, the available margin in the account, the required margin for a given order, the net liquidation value for the account and others. Take a look at:
´³¨¹°ù²µ±ð²Ô
?
On Fri, Mar 21, 2025 at 03:17 PM, donye wrote:
|