Is there a terminal on MetaEditor ? Where is It ?

 

Hi,


I want to test a mini EA that just call the function printf(), but i can't find the terminal to see the result..


Aymeric

 
What does the tool tip say when you put your cursor over the circled icon?

 
No, i meant a terminal like on Linux when you code something in C++, like where you see the result of a cout<<"blabla"<<endl;
 
You run it ON the terminal, Print output is in the Journal tab.
 
// Here is my code, when i attach it to the chart on the terminal, there is only the name of the program which appears on the up right of the chart, but nothing in the journal :(



#property copyright "AYMERIC"

#property version   "1.00"
#property strict

////+------------------------------------------------------------------+
//| Expert initialization function                                   |
//+------------------------------------------------------------------+
int OnInit()
  {
//---
   
//---
   return(INIT_SUCCEEDED);
  }
//+------------------------------------------------------------------+
//| Expert deinitialization function                                 |
//+------------------------------------------------------------------+
void OnDeinit(const int reason)
  {
//---
   
  }


//+------------------------------------------------------------------+
int start()
  {
    

   printf("lu",1);
   
   return 0;
  }
//+------------------------------------------------------------------+


 
 

Look in the Experts tab

 
Ok, thanks i just found it, not easy to see...
 
AYMERIC:
Ok, thanks i just found it, not easy to see...
Of course Linux is a lot more easy ;-)
 
angevoyageur:
Of course Linux is a lot more easy ;-)


Je connais pas Linux plus que ça, juste pour la prog en c++... ;-)

Reason: