Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 142
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
This is a bit complicated... It's even a bit long. Is there any way of doing this. For instance, can we write print(ExtMapBuffer[0]); in the code and look at the contents? Except if it's possible to do it that way, how can I see these values...? With what?
Well, you don't have to do it by hand on a piece of paper, or do you feel sorry for your processor?)). Write For(int i=0; i<ArraySize(ExtMapBuffer);i++) Print("ExtMapBuffer[",i,"]=",DoubleToStr(ExtMapBuffer[i],8)); One line only.
Although judging by the array's name, it is from some indicator. It can probably be seen on the screen anyway.
Well, you don't have to do it by hand on a piece of paper, or do you feel sorry for your processor?)). Write For(int i=0; i<ArraySize(ExtMapBuffer);i++) Print("ExtMapBuffer[",i,"]=",DoubleToStr(ExtMapBuffer[i],8);
Although judging by the array's name, it is from some indicator. It's most likely can be seen on the screen anyway.
Yes, it's right, it's an indicator, that's how I do it. I use metaeditor and write " Print("I am working on real account");". The question is how to make the program output this message. In other words, how to make me see this message. I restart the terminal and add the indicator to the chart. But I have not seen this message, while the indicator is working. I.e. how to find the errors if they are in the year. I would not need to look through all the code in php. Gives out the error and the line on which it is present. But here I don't even know how to see error messages and so on.
If you do not need to analyse the debug messages, delete them. Not all messages are displayed in the "log" tab of the tester. They are all in the logs. Someone needs them. So take care of cleaning up the space yourself. Or search the site for a walker to clear the log directory.
What I mean is that with every new test the old logs will be removed, and they will become ballast. That way the logs would always contain only the most up to date information of the last test. I haven't found an automatic log cleaner yet.
Sepulca:
Well, you don't have to do it by hand on a piece of paper, or do you feel sorry for your processor?)). Write For(int i=0; i<ArraySize(ExtMapBuffer);i++) Print("ExtMapBuffer[",i,"]=",DoubleToStr(ExtMapBuffer[i],8);
Although judging by the array's name, it is from some indicator. It's most likely to be visible on the screen anyway.
Yes, it's right, it's an indicator, that's how I do it. I use metaeditor and write " Print("I am working on real account");". The question is how to make the program output this message. In other words, how to make me see this message. I restart the terminal and add the indicator to the chart. But I have not seen this message, while the indicator is working. I.e. how to find the errors if they are in the year. I would not need to look through all the code in php. Gives out the error and the line on which it is present. I don't even know how to see the error messages.
In my program I prescribe order opening only with a zero variable, which I store as an open order number. Either I am missing something here, or the error lies in some other place ... Please advise:) Here is a part of the program where orders are opened
Well, if you remember to compile the indicator after changing the meta-editor, then your program just doesn't go to Print because of its logic, or you are not looking in the TERMINAL window of the JOURNAL tab, EXPERTS . For real/demo replace Print with Alert, then it will definitely pop up.
Thank you for Alert.
Photos of the terminal in English and Russian are attached
Try to select any other language in the terminal, say Dutch, and see what happens.
In my program I prescribe order opening only with a zero variable, which I store as an open order number. Either I am missing something here, or the error lies in some other place ... Please advise:) Here is a part of the program where orders are opened
There is a function for determining the minimum lot size:
I'm wondering why there's a logarithm, and a natural one at that. Why does it divide one by the other? What did the author want to implement with this function?
Say you have an array. [2]=>3[3]=>4.
How to pull out the key of the last cell and as the value, also the last one?