RealTick Users

Hello,


on the MarketMinder under RealTick, if you use GE:N you can filter out only trades occured on the NYSE. is there a comparable way to filter the same trades when getting quotes through the API?


thanks
 
Quote from ManhattanTrader:

Hello,


on the MarketMinder under RealTick, if you use GE:N you can filter out only trades occured on the NYSE. is there a comparable way to filter the same trades when getting quotes through the API?


thanks
Sure,

Assuming you are async advising, how about:

...
IField r_last = row["REGIONAL_TRDPRC_1"];
IField r_last_exch_id = row["REGIONAL_TRDXID_1"];

if((null != r_last) && (null != r_last_exch_id))
{
if(r_last_exch_id == "NYS"
do you thing...
}

nitro
 
Back
Top