- Search Energy EXCH
-
PaulMF replied Apr 19, 2021If you are using that array inside an indicator's buffer, then it is ok. You don't have to resize it. But if you use it, outside of an indicator buffer, then you have to assign some size to an array in order to save values at each place. Also, you ...
I need help with my function please
-
PaulMF replied Apr 19, 2021You have to set a size to the array and fill it with some default value: double High_TD_Point_Value(int CandleRef) { if(High[CandleRef]>High[CandleRef-1]&& High[CandleRef]>High[CandleRef+1]) { return (High[CandleRef]); } else { return (0); } } void ...
I need help with my function please
-
PaulMF replied Apr 19, 2021Second line of the second code snippet: if(High[CandleRef]>High[CandleRef-1]&& High[CandleRef>High[CandleRef+1]]) I guess you want: if(High[CandleRef]>High[CandleRef-1]&& High[CandleRef]>High[CandleRef+1]) And you may need to set"int i = 1" instead ...
I need help with my function please
-
PaulMF replied Apr 19, 2021Hope this script inspires you on how to accomplish this and similar tasks in the future: #property strict struct tf_symbol_counter { string symbol; ENUM_TIMEFRAMES tf; int good; int bad; int no; int net; }; string symbols[] = ...
I will code your EAs and Indicators for no charge
-
PaulMF replied Apr 19, 2021Ok. Then hope it is all about the buttons. Let's see if in the next version there is no issues with those indicators. Thanks for this amazing feedback.
MetaTrader Windows Manager
-
PaulMF replied Apr 19, 2021But that indicator only crashes your terminal when working in conjuction with Windows Manager or independently of what other indicator is running at the same time? It seems like the buttons and the texts of that indicator interfere in some way. You ...
MetaTrader Windows Manager
-
PaulMF replied Apr 19, 2021Yes! A big issue. A shortcut I used in code for some purpose. Sorry for that, it will be solved in the next version. Thanks for your feedback
MetaTrader Windows Manager
-
PaulMF replied Apr 19, 2021Can you specify your trailing stop sequence? There many ways to handle a trailing stop. By steps, by continuously setting the stops at a specific distance whilst the price moves in profit direction, etc. The only thing that is clear to me is that ...
Trailing stop after 10 pips?
-
PaulMF replied Apr 19, 2021The file has to be Windows Manager.ex4 instead of Windows Manager (1).ex4. Remove the older version of Windows Manager.ex4 from you Downloads folder and MetaTrader folders and download and install it again. Or just rename the file in MetaTrader ...
MetaTrader Windows Manager
-
PaulMF replied Apr 19, 2021What indicators or scripts do you already have attached to that chart? Aside of Volumes that I can clearly see is there. Let's try to find incompatibility issues and possible solutions...
MetaTrader Windows Manager
-
PaulMF replied Apr 19, 2021I find good the first code snippet. Good for analyzing the posibilities of your entry logic. Just one thing that could help there: else if statments instead of only if statments. In the second code snippet: Notice that you are overwritting the value ...
I will code your EAs and Indicators for no charge
-
PaulMF replied Apr 18, 2021For those of you that were interested in the Windows Manager. I have just created a new thread with this tool: url There you can provide your feedback and stay up to date with the last version.
I will code your EAs and Indicators for no charge
-
MetaTrader Windows Manager
Started Apr 18, 2021|Platform Tech|21 replies
Hello Traders! Thanks to John, a new inspiration turns up from the I will code your EAs and ...
-
PaulMF replied Apr 18, 2021Hello Proc. I like this type of Trading Systems threads where we can clearly identify the strategy rules. Thanks for that. I see you mention statistics. This strategy and similar ones are broadly used but I haven't read anything about their ...
Previous Day Breakout Edge System
-
PaulMF replied Apr 18, 2021You are still playing with stupid tactics. From my side: All sustained by arguments. Always ready to discuss the topic. Always respectful. Never talked about anything personal of other users. Never suspended by FF. etc. etc. The reason that there ...
FTMO - For serious traders
-
PaulMF replied Apr 18, 2021It didn't go well this week. That's not good luck. The two worst weeks were consecutive. Hope something like 5th April comes back. Good luck
Nice paper backtest, probably will fail in the future, why? :(
-
PaulMF replied Apr 18, 2021You're welcome. Good luck!
I will code your EAs and Indicators for no charge
-
PaulMF replied Apr 18, 2021That was 25th March. Since then you and those FTMO's relatives have tried to discredit me with the same strategy: misogynist comments, disrespectful messages, insults and inappropiate supensions (always rejected by FF). Even you shouted at my ...
FTMO - For serious traders
-
PaulMF replied Apr 18, 2021Attached a version that compiles. I also include some related files that were required (I have found them in ff). If you want to, you may paste those .mqh files to the Include folder of your terminal. However, not required. You just need the .ex4 ...
I will code your EAs and Indicators for no charge