I use Explore, but sometimes data for ~~~EQUITY symbol shows up on every second line. When I restart Amibroker and try again, everything is okay, with ~~~EQUITY not present. Is there a way to put some line in code which would force ~~~EQUITY not to show ever? I'm not sure how this is triggered, I change my code, backtest and explore multiple times. Here is part of my code responsible for explore:
if ( Status( "action" ) == actionExplore )
{
Filter = 1; //all symbols and quotes accepted in Explore tab
Filter = Buy OR Short OR Sell OR Cover;
addcolumn( Low, "Low", 1);
addcolumn( High, "High", 1);
addcolumn( Buy, "Buy", 1);
addcolumn( Short, "Short", 1);
addcolumn( Sell, "Sell", 1);
addcolumn( Cover, "Cover", 1);
SetSortColumns(-2);
}