No more than 1000 symbols can be selected

Carl Schreiber  

For your EA start reading (Editor, F1) about SymbolName(), SymbolSelect and SymbolTotal().

THPbet30000  
Carl Schreiber :

For your EA read (Editor, F1) via SymbolName (), SymbolSelect and SymbolTotal ().

What do I have to do to get rid of the message " no more than 1000 symbols can be selected"?


MATTHEW STAN WILLS  

Hi all,

I have a similar / identical problem.

My EA is trying to manage 1200 symbols (stock CFD's). Obviously I run into the same issue as THP above.

I understand what is going on behind the scenes with SymbolSelect() etc

My question is:

Is there a way to de-select a symbol from the Market Watch after I have processed it within the EA or put another way is there a way of removing symbols from the market watch from a script or function ?


Many thanks for your help!

Matt

Amir Yacoby  
MrRex87:

Hi all,

I have a similar / identical problem.

My EA is trying to manage 1200 symbols (stock CFD's). Obviously I run into the same issue as THP above.

I understand what is going on behind the scenes with SymbolSelect() etc

My question is:

Is there a way to de-select a symbol from the Market Watch after I have processed it within the EA or put another way is there a way of removing symbols from the market watch from a script or function ?


Many thanks for your help!

Matt

SymbolSelect("XXXYYY",false)
Chuckle  
MrRex87:

Hi all,

I have a similar / identical problem.

My EA is trying to manage 1200 symbols (stock CFD's). Obviously I run into the same issue as THP above.

I understand what is going on behind the scenes with SymbolSelect() etc

My question is:

Is there a way to de-select a symbol from the Market Watch after I have processed it within the EA or put another way is there a way of removing symbols from the market watch from a script or function ?


Many thanks for your help!

Matt

I think the system selects all the symboles that would be used in the EA when it starts the backtest.

The question is whay the developer set this limit? 

Can the limit be removed?

MATTHEW STAN WILLS  
Chuckle:

I think the system selects all the symboles that would be used in the EA when it starts the backtest.

The question is whay the developer set this limit? 

Can the limit be removed?

Very late getting back but thanks for your help everyone

SymbolSelect(XXXYYY,false); did the trick!

Cheers

Reason: