Re: Correlate orders and fills from the API to those in Flex Report
You are right Juergen. great find (for me at least)! I had been receiving daily flex reports since ancient times with OrderRefs filled without any additional settings until they stopped filling it a
By
ds-avatar
·
#52112
·
|
Re: E-MINI reqTickByTick data parameters
Oops, sorry I didn¡¯t notice also that you have contract.lastTradeDateOrContractMonth = "202315"; This should be ¡°202312¡±, or ¡°20231215¡±.
By
Richard L King
·
#52111
·
|
Re: E-MINI reqTickByTick data parameters
Thank you Richard as well.
By
fran <fchiesadoc@...>
·
#52110
·
|
Re: E-MINI reqTickByTick data parameters
Thank you J¨¹rgen and Robby for your quick response. I followed your instructions and it worked.
By
fran <fchiesadoc@...>
·
#52109
·
|
Re: Retrieving status of a specific orderID through orderStatus or openOrder
Why don't you print profit_order_ID right before 'if' to find out? Also they might be of different type, I'd check that too.
By
bespalex
·
#52108
·
|
Re: Concept of Data Lines
Thank you for clarifying this, strangely I do not see much more incoming data messages when using TickByTick, so I am not sure how it saves the bandwidth for them, but lesson's learned.
By
bespalex
·
#52107
·
|
Re: E-MINI reqTickByTick data parameters
Fran, Try my way removing localSymbol. It works for me though I am using C#.
By
Robby
·
#52106
·
|
Re: E-MINI reqTickByTick data parameters
When you specify localSymbol you don't have to provide lastTradeDateOrContractMonth as well. But if you do, they have to match. You set lastTradeDateOrContractMonth to "202315", which is not even a
By
J¨¹rgen Reinold
·
#52105
·
|
Re: E-MINI reqTickByTick data parameters
You may try this code snippet. Just remove localSymbol. Contract ContractSamples::EMINI(){ Contract contract; contract.symbol = "ES"; contract.secType = "FUT"; contract.exchange = "CME";
By
Robby
·
#52104
·
|
Re: E-MINI reqTickByTick data parameters
If you don't mind sharing, could you share an example of how would you configure the field parameters for an E-MINI data stream (tick-by-tick) in C++? I have tried several combinations but I keep
By
fran <fchiesadoc@...>
·
#52103
·
|
Re: E-MINI reqTickByTick data parameters
Hi Richard, thank you for your answer. I tried your suggestion but I keep getting "Error. Id: 20004, Code: 200, Msg: No security definition has been found for the request".
By
fran <fchiesadoc@...>
·
#52102
·
|
Re: Impossible to reconnect after TWS restart, please help!
Thanks for this! From where do you suggest I activate the thread killer by stop_threads = True ? I know you said from main but its unclear to me what you mean. thanks again.
By
makeitrain512@...
·
#52101
·
|
Re: execId format documentation
Yes it does have a well defined structure, and it look pretty stable and guess-able in part, and yes last digits are documented
By
Gordon Eldest
·
#52100
·
|
Re: Impossible to reconnect after TWS restart, please help!
Also read https://www.geeksforgeeks.org/python-different-ways-to-kill-a-thread/ and consider method #2 with a global stop_threads This is not the most elegant method as it lack specificity of thread
By
Gordon Eldest
·
#52099
·
|
Re: Retrieving status of a specific orderID through orderStatus or openOrder
How did you set *profit_order_ID* ? * * So I can only speculate that what happen is that *orderStatus* call back never came with the value *orderId* that you did set in *profit_order_ID* *,* and this
By
Gordon Eldest
·
#52098
·
|
Re: Impossible to reconnect after TWS restart, please help!
Thanks for this! How do you suggest I blend this in with my code ?
By
makeitrain512@...
·
#52097
·
|
Re: E-MINI reqTickByTick data parameters
localSymbol should be ¡°ESZ3¡±. What you¡¯ve got, ¡°ESZ2¡±, is for December 2022. Sent: Monday, November 20, 2023 8:51 PM To: [email protected] Subject: [TWS API] E-MINI reqTickByTick data
By
Richard L King
·
#52096
·
|
Re: Impossible to reconnect after TWS restart, please help!
Here is a SO question about something similar. https://stackoverflow.com/a/67494014/2855515 I haven't tested but it sounds legit.
By
btw
·
#52095
·
|
Re: Impossible to reconnect after TWS restart, please help!
WOW! You sir are a true detective. Yes, you are correct in saying that it has never worked, I have been working on this for the past 2 months or maybe even more and now I am stuck on this issue, and I
By
makeitrain512@...
·
#52094
·
|
E-MINI reqTickByTick data parameters
Hi everyone, I am having trouble getting the E-MINI ticker tick-by-tick data (specifically E-mini S&P 500; ESdec15'23(50) CME). I am trying to run this line of code: *
By
fran <fchiesadoc@...>
·
#52093
·
|