Keyboard Shortcuts
Likes
- Twsapi
- Messages
Search
Re: Long on the stock, want to exit but: Order rejected The contract is not available for short sale
A,? If it's in your paper account, welcome to IB..
If it's production, check that the contractID is the same, and the exchange is right (SMART, or whatever came on the Position record itself). If IB were to think it was a different security, your sell would be from a basis of 0 making it a short. Otherwise report it IB, and send in your logs. -Peter |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Long on the stock, want to exit but: Order rejected The contract is not available for short sale
Is your algorithm trying to sell more shares than what the position holds? Maybe the fill quantity was slightly smaller than what the algorithm had ordered?
toggle quoted message
Show quoted text
JR On Thu, Apr 29, 2021 at 09:02 PM, Ace wrote: Hi, |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Long on the stock, want to exit but: Order rejected The contract is not available for short sale
Hi,
My algo took a long position on a stock and when target was reached and wanted to exit I got this message: 201 Order rejected - reason:The contract is not available for short sale. I'm aware of? this message if I want to go short on a stock. But if I bought and own the shares why does this happen? The algo runs in paper trading account so is it related? Can this really happen live? Thanks A |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Custom Scanners?
Patrick, Re: "we cannot pull our already made scanners in TWS into Python?" No, we can not, but we can look inside the already made scanner?to get all the associated attributes names etc. Click on the floppy-disk icon in the top-right corner of the TWS classic scanner window and choose "Save template": and store the file, then look inside that file and you'll see "internals" of your custom scanner: Another place to have a sneak-peek inside your TWS scanners is to analyze TWS log lines around the time when you sent the scanner request. It will be serialized to one loong string with all the parameters and their values. Cheers, Dmitry Shevkoplyas On Thu, Apr 29, 2021 at 3:14 PM hymagik via <hymagik=[email protected]> wrote: On Thu, Apr 29, 2021 at 07:08 AM, Despair wrote: |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: CANNOT COMPILE C++ CODE WITH VISUAL STUDIO 2017
The project come with default SDK /Plateform settings (generally Win 8.1) Like below
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Do I need to create a GUI for using the IBAPI sample program TestCppClient. Thanks.
Yes! In case you want to dig UI like, run the C# version (if you have VS STudio), it have some UI that may give a seed for something assuming you know or will master a little of C# Not sure how official is this shell |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Custom Scanners?
On Thu, Apr 29, 2021 at 07:08 AM, Despair wrote:
Look what you look for. In case you consider it, the answer is something like a series or entries alike this single one below (for STK) Sorry the "Past" remove some '>' and '<' but you should get the idea.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Can a bracket order have two take profit orders to exit a position at two different profit levels?
Yeah, AFAIK it's not possible to set different sizes in a simple bracket order so it's pretty perplexing that IB support would suggest that. It is possible with the pair-trade variety of the bracket order but even then the sizes are not set independently but using a beta-ratio.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Custom Scanners?
In addition here are the some specific filters:
ScannerSubscription scannerSubsctiption = new ScannerSubscription();
?
scannerSubsctiption.numberOfRows(scannerResultRows);
scannerSubsctiption.scanCode("HOT_BY_PRICE");
scannerSubsctiption.instrument("STK");
scannerSubsctiption.locationCode("STK.US.MAJOR");
scannerSubsctiption.stockTypeFilter("ALL");
scannerSubsctiption.abovePrice(abovePrice);
scannerSubsctiption.belowPrice(belowPrice); ? ? ? ? ? ? ? ? List<TagValue> scannerTagValues?= Arrays.asList(new TagValue("volumeRateAbove", "2000")); ? ? ? ? ? ? ? ? socket.reqScannerSubscription(scannerId, scannerSubsctiption, null,? scannerTagValues); |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Can a bracket order have two take profit orders to exit a position at two different profit levels?
Forgot to attached a couple screen grabs.
First the five orders. Please note that 23.1 was placed with a quantity of 500.via the API. Attempt to change quantity of 23.1 via API fails without error and TWS quanitty field is greyed out. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Can a bracket order have two take profit orders to exit a position at two different profit levels?
I actually tried that (and slight variations) when I saw your original post last night, but it did not work for me.
toggle quoted message
Show quoted text
What happens is that IB automatically sets the quantity for #3 to the same full amount of #1. I guess the basic idea is that the profit and stop legs of a bracket order should protect the entire position. If you just place orders #1, #3, and #4 (no stop loss orders in the brackets) you can actually adjust quantities to Full/Half/Half right after the three orders are placed. Both via API or TWS. But once #1 was filled, IB again adjusted quantity of? #3 to the actually filled quantity. Again it was possible to adjust the quantity of #3 (the now active order) to Half via API or TWS. When placing all five orders, quantity changes failed via API and the fields were greyed out in TWS. JR On Thu, Apr 29, 2021 at 10:22 AM, Levente wrote: Unfortunately I did not have the luxury (time) to try this out myself, so a BIG thank you to Richard. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Can a bracket order have two take profit orders to exit a position at two different profit levels?
Nick
Ruh roh, the forum may have gotten pwned by IP support.
toggle quoted message
Show quoted text
On 4/29/2021 11:22 AM, Levente wrote:
However, I managed to call IB API support and was suggested the following: |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Can a bracket order have two take profit orders to exit a position at two different profit levels?
Unfortunately I did not have the luxury (time) to try this out myself, so a BIG thank you to Richard.
However, I managed to call IB API support and was suggested the following: Create 5 (!!!) orders 1. Position opening order (assume ID is 1) 2. Stop loss order for the full amount (assume ID is 2) + set parent to 1 3. Take profit order for HALF of the amount?(assume ID is 3) + set parent to 1 4. Take profit order for HALF of the amount at the other price level (assume ID is 4)? + set parent to 3 5. Stop loss order for HALF of the amount (assume ID is 5) + set parent to 3 When position opening order fills, orders with ID 2 and 3 will get activated. If stop loss order 2 fills, the take profit 3 will get cancelled and orders 4 and 5 will never activate. If take profit order 3 fills, the stop loss order 2 will get cancelled, and orders 4 and 5 will get activated and will belong to a NEW OCA group. I will try this out and will post my findings. |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Custom Scanners?
Here is a list of available scancodes. I don't know if there are more.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Re: Can a bracket order have two take profit orders to exit a position at two different profit levels?
Nick
I don't know the commission impact or if it fits with your strategy but perhaps you could place two brackets each for N/2 shares. This would leave you always protected and you wouldn't have to deal with possible outages.
toggle quoted message
Show quoted text
There's no perfect solution so it's a matter of picking the least evil alternative. On 4/28/2021 5:47 PM, Levente wrote:
I would like to know if there is a mechanism that would allow me to place a position opening order for N contracts, together with two take profit orders, each of size N/2 but at different price levels. |