[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 40

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
Theoretical issues:
1. How to write a function (where to read about it)?
2. With which extension should it be compiled and saved?
3. In which folder do I save it?
4. Do I need to write a separate script to run it (or the Expert Advisor will run itself)?
Many thanks to those who have not passed my question!))
Hello, the indicator does not draw new values. Only when I put it on the chart again, it updates the values.
If you can fix the code!
Thanks
Hello, the indicator does not draw new values. Only when I put it on the chart again, it updates the values.
If you can fix the code!
Thanks
Vinin thanks for the help. Fixed the indicator put it into visualisation but it still doesn't draw new values!!!!
I don't understand anything.
Vinin thanks for the help. Fixed the indicator put it into visualisation but it still doesn't draw new values!!!!
I do not understand anything.
I guess the number of bars updated is always less than three and the loop condition is never satisfied
for(int i=3; i< limit; i++)
because new bars arrive one at a time. Maybe something like
for(int i=3; i< limit+3; i++)
Vinin thanks for the help. Fixed the indicator put it into visualisation but it still doesn't draw new values!!!!
I don't understand anything.
That's the way the multicurrency indicator is not supposed to work on visualization. It takes data from other timeframes from the current chart. You have to do time synchronization for this kind of work.
This is not the way the multicurrency tool is supposed to work on the visualisation. It takes data from other timeframes from the current chart. Time synchronisation has to be done for this kind of work.
Now I understand. thank you very much!!!!!!!!!!!!
Hi!
Is it possible to change MT4 settings with an EA, e.g. lot size?
If yes, please advise!
Hi!
Is it possible to change MT4 settings with an EA, e.g. lot size?
If yes, advise!
The lot size is not relevant to the MT4 settings. :) It is specified as a parameter of the OrderSend function when sending a request to open an order.
The lot size is not related to the MT4 settings. :) It is specified as a parameter of the OrderSend function when sending a request to open an order.
I know about opening an order using code.
I need to create a semi-automatic system with management properties.
I open a position manually, but the lot size is monitored by the EA and changes it by default in MT (service/settings/trading/default volume)
Is it possible to do it?