Re: IB's New automated trading system questionnaire
Thanks to everyone for their suggestions.? I flailed around for longer than I would like to admit before finding a send email solution that works for me.
1) I found out gmail offers something called
By
Frank Bell
·
#53692
·
|
Re: No definition for SPX option using LocalSymbol
For the future readers.
I was using data coming from Schwab and each SPX contract had two dates, "LastTradingDate" and "ExpirationDate". I was trying to use option contract expiring the same day to
By
Andy Sanders
·
#53691
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Uh, my sanity is restored :)
As for your comment about the network, yes my dev setup is in EU (yet its 250Mbit up/down fiber, typically no issues here with Internet otherwise, but of course anything
By
ajn
·
#53690
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Ok, I managed to reproduce the problem.
By
buddy
·
#53689
·
|
Re: IB's New automated trading system questionnaire
Once you've set up the appropriate Telegram bot on your Telegram account, sending a message programmatically is pretty easy. ?Here's my (redacted) code for that:
#!/usr/bin/env python3
import
By
Neal Young
·
#53688
·
|
Re: IB's New automated trading system questionnaire
Another option is Telegram. I wouldn't trust too much on email as it's very difficult these days to have your mail accepted by the receiving end as non-spam or not get blocked.
For instant
By
Raoul Suurmeijer
·
#53687
·
|
Re: -1 negative VOLUME in Futures BID_ASK historical request
I see the same. It looks like you only get VOLUME or BARCOUNT if you ask for TRADES. That doesn’t seem unreasonable to me.
Richard
By
Richard L King
·
#53686
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
I just ran your sample program again, after hours w/ realtime, data_lines=75, loops=5 and everything worked OK using IBGW 10.30.1s. IDK what to say... I may try it again tomorrow since you indicate
By
buddy
·
#53682
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Thank you very much!
yes, I can confirm it is there, at least it was all day for me on that very code and right now. (yet it is funky atm, see end of post)
can you run it with several loops? It is
By
ajn
·
#53681
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
I presume you mean the problem <ins>will still exhibit itself</ins>. Can you confirm? Because I just ran your last sample program (w/ inconsequential changes for convenience; see attached) against a
By
buddy
·
#53680
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Just run a couple of more tests (using the app I posted, just changed False to True and commented cancel request). Snapshot works 100% reliable as Daniel experiences i.e. snapshot delivers all that is
By
ajn
·
#53679
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
yes it is the same call I am making, except I am not asking for snapshot (4th argument is False) but whole set of data to be streamed to me
self.reqMktData( orderId , contract , "" , False , False ,
By
ajn
·
#53678
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Hi AJ,
I connect via TWS and my TWS version is 10.30.1s, whereas the version of my
CSharpAPI.dll is 10.15.2.0.
"I didn't receive all of ["bid", "ask", "last", "volume", "last_timestamp",
I think
By
Daniel Ferreira
·
#53677
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
In the attached zip I have the app. It is now only 250 lines including all the IB connection and argument parsing. The working function are all the same as before ( described earlier) (
By
ajn
·
#53676
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Thanks Daniel,
Just to be clear the problem is not that I am not receiving the callbacks at all. The problem is that I am receiving not entire set of? the data I expect for some of the contracts
By
ajn
·
#53675
·
|
Re: No definition for SPX option using LocalSymbol
Thanks.
I've already tried using US format like SPXW ?241218C05945000 but for some reason it still couldn't find the contract.
I just tried again and it seems to work now.
By
Andy Sanders
·
#53674
·
|
Re: No definition for SPX option using LocalSymbol
Yes, I mentioned that I can use TradingClass to separate monthly and weekly options. The problem is that it is supposed to be generic method that I could use to form a contract for any security type,
By
Andy Sanders
·
#53673
·
|
Re: No definition for SPX option using LocalSymbol
The Contract Inspector shows you the actual local symbol to use. US options and European options have different local symbol formats: you’ve tried to use the European format for a US option.
By
Richard L King
·
#53672
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Hi AJN.
First off: note that `Contract.primaryExch` is not the same as
`Contract.Exchange`. You might be constructing invalid Contract objects.
About reqMktData: just for fun I checked my code and
By
Daniel Ferreira
·
#53670
·
|
Re: reqMktData callbacks are missing data with gateway 10.30 and 10.31 sporadically, works fine with 10.19 and older gateways/TWS
Pull it out and make it stand alone. Get rid of **ALL SUPERFLUOUS** things like colorization constants... or no one will want to help you.
By
buddy
·
#53669
·
|