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
hello mladen please help with compiling errors on the below. By any chance do you have suggestion for any good combined stochatic RSI MTF EAs
Hello mladen will you be be to debug
candyman752
Parabolic SAR does not repaint
As I told you : that EA uses centered TMA. Centered TMA recalculates/repaintshi malden
been trying to go through the code of the EA to see which indicator is the centred TMA .have not been able to figure it out. is itpossible to delete the code that relies on the centered TMA and the EA still execute order?
hi malden been trying to go through the code of the EA to see which indicator is the centred TMA .have not been able to figure it out. is itpossible to delete the code that relies on the centered TMA and the EA still execute order?
candyman752
In the "wapen" Ea there is a function called calcTMA - that is the centered TMA. And it can not be removed from the EA since it is a part of the conditions
hello mladen
could you clear compiling errors in the attached
hello mladen could you clear compiling errors in the attached
Here is a version without compiler errors : sto_m5xm15xm30_v2.1.mq4
__________________
Check it, since the version you posted could not work at all in a normal mode (stochastic was wrong as well as the return results from the SignalExit() function that did not work at all)
Is there some example how to make simple code execution time timer?
Is there some example how to make simple code execution time timer?
Simplest way would be to place :
uint startTime = GetTickCount();
at the beginning of the code you wish to check, and then :
uint elapsedTime = GetTickCount()-startTime;
at the end. It should (with a couple of milliseconds overhead) give you the elapsed time in milliseconds
Simplest way would be to place :
uint startTime = GetTickCount();
at the beginning of the code you wish to check, and then :
uint elapsedTime = GetTickCount()-startTime;
at the end. It should (with a couple of milliseconds overhead) give you the elapsed time in millisecondsGreat. Thanks
This (Overlay and Spread Charts for 2 symbols) displays phantom values at the bottom of the chart, Can someone check it?
overlay_and_spread_charts_for_2_symbols.zip
This (Overlay and Spread Charts for 2 symbols) displays phantom values at the bottom of the chart, Can someone check it? overlay_and_spread_charts_for_2_symbols.zip
It seems that that indicator has quite a few coding bugs - not sure that it can be fixed using the logic that the authour is using