[ARCHIVE] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 3. - page 395

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
Please advise if Alert works when testing EAs,
For some reason Comment works but Alert does not????
Please advise if Alert works when testing EAs,
For some reason Comment works but Alert does not????
It logs
Hello.
Can you tell me how I can paste the function attached here into the EA code to make it work?
I tried just to copy and paste it after Int Start(). I guess it's not that simple?
Hello.
Can you tell me how I can paste the function attached here into the EA code to make it work?
I tried just to copy and paste it after Int Start(). I guess it's not that simple?
1). I need to copy the function into the code.
2). And where you need to call the function, write, for example:
Hello.
Can you tell me how I can paste the function attached here into the EA code to make it work?
I tried just to copy and paste it after Int Start(). I guess it's not that simple?
It's hard to understand what you mean by inserting it after int Start(), aren't you inserting it inside Start?
Just paste it at the very end of your code
It's hard to understand what you mean by inserting it after int Start(), aren't you inserting it inside Start?
Insert it just at the end of your code
Yes, was inside Start, now put it at the end. When compiling an error: is not referenced and will be removed from exp-file
Hello.
Can you tell me how I can paste the function attached here into the EA code to make it work?
I tried just to copy and paste it after Int Start(). I guess it's not that simple?
Yes, it was inside Start, now it's at the end. When compiling, you get an error: is not referenced and will be removed from exp-file
That's right - this error means that your fie is not being called for execution from your EA code and will be removed. Read the order of fie calls from my link in the previous post.
That's right - this error means that your fie is not being called for execution from your EA code and will be deleted, see the order of fie calls from my link in the previous post.
That's it, it's working. Thank you very much.