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 ;-)
Ok, thanks i just found it, not easy to see...
angevoyageur:
Of course Linux is a lot more easy ;-)
Of course Linux is a lot more easy ;-)
Je connais pas Linux plus que ça, juste pour la prog en c++... ;-)
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
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