¿ªÔÆÌåÓý

ctrl + shift + ? for shortcuts
© 2025 Groups.io

IBDividends feed


 

Hi all,


I am attempting to get the IBDividends feed working for a given set of tickers:




I can successfully request feed 456:


15:19:13:996 <- 1-10-23832-0-RIO-STK--0.0---LSE--GBP---0-456-0-


However I never get a returned tick type of 59, at least from the tickString callback (as this is meant to be a comma separated list of values). ?I am using Java and can get all other data, position sizes, tick prices, account details, etc., but never seem to get any dividend related information.


Has anyone successfully managed to get a return tick type of 59?


Thanks,


Andrew



 

Hi Andrew,

Try to smart-route rather than direct-route the request, i.e.

Contract contract = new Contract();

contract.symbol("RIO");

contract.secType("STK");

contract.currency("GBP");

contract.exchange("SMART");

contract.primaryExch("LSE");


m_s.reqMktData(101, contract, "456", false, null);


Then the dividend information will be returned.



Josh


 

Works perfectly, thanks!

Andrew