get all symbols and check them all

 

hi

How can i get all symbols and check a function on all of symbols continuously? like a expert but i want to run on all symbols. for example i want to check all symbols RSI value and return symbols that have rsi=30 and run continuously, not run for one time like script. please help me. thanks you

 
i can use 'for' to get all symbols but how can i check them all? i must write my program in expert?
 
  1. hosein_khorami i must write my program in expert?

    Absolutely. or pay (Freelance) someone to code it.
              Hiring to write script - General - MQL5 programming forum

    We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using CODE button) and state the nature of your problem.
              No free help
              urgent help.

  2. hosein_khorami: i can use 'for' to get all symbols
 

int total=SymbolsTotal(true)-1;


   

  for(int i=total;i>0;i--)

  {

   string Sembol=SymbolName(i,true);

   Print("Number: "+string(i)+" Sembol Name: "+Sembol+" Close Price: ",iClose(Sembol,0,0));

  }


 
Sergei Poliukhov #:



Thanks Sergei.. Very helpful.