Hello Everyone,
I am curious, if it is possible to retrieve time stamp for bid/ask. In the example below I am requesting data on SPX option.
The output looks like;
Tick Price ...
Tick Size ...
Tick Price ...
Tick Size ...
Each Tick Price and Tick Size contains info for either bid or ask.
I read that reqMktData is supposed to call tickString, which contains time stamp, but for some reason I do not see it in output.
Also I am new to internet trading, what does term "Tick" exactly mean?
Regards,
BrazilForever
I am curious, if it is possible to retrieve time stamp for bid/ask. In the example below I am requesting data on SPX option.
Code:
Contract contract1 = new Contract();
contract1.ConId = DataCollection[0].Summary.ConId;
contract1.Symbol = DataCollection[0].Summary.Symbol;
contract1.SecType = DataCollection[0].Summary.SecType;
contract1.Exchange = "SMART";
contract1.Right = DataCollection[0].Summary.Right;
contract1.Strike = DataCollection[0].Summary.Strike;
contract1.Expiry = DataCollection[0].Summary.Expiry;
List<TagValue> BogusmktDataOptions = new List<TagValue>();
ibClient.ClientSocket.reqMktData(2, contract1, "", true, BogusmktDataOptions);
The output looks like;
Tick Price ...
Tick Size ...
Tick Price ...
Tick Size ...
Each Tick Price and Tick Size contains info for either bid or ask.
I read that reqMktData is supposed to call tickString, which contains time stamp, but for some reason I do not see it in output.
Also I am new to internet trading, what does term "Tick" exactly mean?
Regards,
BrazilForever