RealTick Users

Discussion in 'Trading Software' started by ManhattanTrader, Feb 4, 2004.

  1. 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
     
  2. nitro

    nitro

    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