I'm not good at suggesting strategy improvements, I'm afraid. Have you rtried other MA crosses?
Posts made by l'andorrà
-
RE: Bollinger bandsposted in Questions & Answers
-
RE: can you make this for me because i don't know how can make i am tiedposted in Questions & Answers
You can add the following block bertween blocks number 2 and three:

Look at the 'Cross width' value. This means the number of candles BEFORE candle ID 1 that the SMA must be crossed. You can modify it as necessary when backtesting. Remember that this is for buys only.
-
RE: Need urgent helpposted in Questions & Answers
Sure. Are you talking about manual or automatic trades?
-
RE: Place counter pending order?posted in Questions & Answers
Not complicated but at what distance (in pips) do you need it from the current open trade?
-
RE: Counter status information **Solved**posted in Questions & Answers
Easy. Just create a variable to to confirm its counting those 'n' times.
Try this example:
https://fxdreema.com/shared/ttbxqQvtc
And please notice how the counter is connected to the variable.

In this example you should see a number 3 on top left of the chart because I chose 3 time to pass. On the right you can see how any pass is adding +1 to the counter.
-
RE: Auto Modify Trailing Stops?posted in Questions & Answers
Try to separate blocks 70 and 125 from its current place and let them be alone. Then change number Id for block 70 to the hisghest number of all top blocks in this project. That way it will be executed in the last place every time a new tick arrives.
On the other hand. How many trades can be open at the same time?
-
RE: create semi-automatic robotposted in Questions & Answers
Hi, I can help you. Do you have any initial project to begin wth?
-
RE: Take the value of the last fractalposted in Questions & Answers
Your current structure is perfect to store the most recent fractals. What you need now is creating two additional variables to store those values for future uses. Let's name them pastfup and pastfdown, for example. Then you strore the values of fup and fdown on blocks 4 and 9 respectively. That way you'll be able to work on fup and pastup on other blocks and they will update automatically as new fractals appear.
On the other habd, I strongly recommend you to put a 'Once per bar' block on top of your structure. You don't need to check all those values every single tick as is the case right now.
-
RE: Use EA to attach and indicator to a chartposted in Questions & Answers
This is a question for hardcore mql4 programmers. As far as I know, the only way to do that is by custom code blocks.
-
RE: How can one set SL on the previous swing?posted in Questions & Answers
Firstly you need to define when the EA should consider a swing has passed. What criteria would you use?
-
RE: comparing the value of the indicator at two diff times?posted in Questions & Answers
You can do that just counting bars from a lower timeframe. Remember that you can always choose in which timeframe a condition block is to work on.
-
RE: can you make this for me because i don't know how can make i am tiedposted in Questions & Answers
Here you have it for buys.
https://fxdreema.com/shared/Ol5k7Hw0b
Now you need to duplicate it for sells.
-
RE: can you make this for me because i don't know how can make i am tiedposted in Questions & Answers
Ok. Now I finally understand. I need one last information. Is there a maximum number of candles to be considered between candles 1 and 2? Apparently it isn't. Am I right?
-
RE: guys please test and rateposted in Questions & Answers
Why should we? What do you want exactly?
-
RE: EA ON MT5 NOT WORKING PERFECTLY......I NEED HELPposted in General Discussions
Maybe you should consider the possibility of paying for a single month subscription. Just a suggestion...

-
RE: Take the value of the last fractalposted in Questions & Answers
Sure, you can storage as many fractals as you wish. You just need as many different variables as fractal values. Then catch them as per my example, BUT not reset them. In my example, fractal values are automatically reset because they are exposed to the current price evolution. Simply move the value of the current fractal to another variable and do not reset it. You can use the same 'Modify Variables' block to do it.
-
RE: comparing the value of the indicator at two diff times?posted in Questions & Answers
Are all those variables of a 'string' type? if so, I see no problem with your blocks. However, I would prefer to use counting bars instead. That way you can simplify the whole thing up.