Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 6. - page 993
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
Can you tell me how to make a manual input request from the script?
#property script_show_inputs.
And another question: is a=a+5 allowed in code? Will the variable a count correctly? Or should I first assign the value of a to another variable, increment it, and then assign the resulting value to the variable a? i.e. b=a; a=b+5?
a=a+5 translates into Russian as: "a" will now equal "a+5". In short you can :)
What could the error mean and where can I find a description of it?
Thank you in advance.
Expert Advisor compiles normally.
When profiling, I get an error in "Journal" tab: MT4 Profiling - loading of xxXXXXXxx failed
When I attach it to a chart no visible changes occur, it says "xxXXXXXxx is not expert and cannot be executed" in the "Journal" tab
Hello!
Currently the function is linked to the current chart (double High[]). How can I modify the function in order to receive prices of different timeframes High_Lim(PERIOD_H4,10,1) High_Lim(PERIOD_M15,10,1)?
If anyone needs, here is an example of how to get the maximum bar prices of different timeframes.