Is it possible to specify the filter programmatically, rather than selecting it in the GUI?
I am looking for a better way than this:
if( MarketID(1) == "Undefined" )
{
CategoryAddSymbol( "", categoryMarket, 5 );
}
This works but it is slow because it has to comb through the entire database instead going directly to selected filtered group like in the GUI.
Any ideas?