First things first. Are all those custom indicators available in mq4 format?
Posts made by l'andorrà
-
RE: Have a trading algorithm involving several indicators.posted in Questions & Answers
-
RE: want to convert 100 pips no repaint indicators - in Trading Systemposted in Questions & Answers
It isn't. You need to import it as a custom indicator to your fxDreema account.
-
RE: MACD + EMA + Martingale Advisor not workingposted in Questions & Answers
The problem is in block 13. You are requiring the EA to have more tan 3 open trades to open a trade. That will never happen with a 'No trade' block on top. Remove one or the other.
-
RE: Thunderbird-V8 EAposted in Questions & Answers
Well, the first step is knowing the strategy itself. I have no idea about it. Do you? If so, could you please detail it here?
-
RE: NeuralM 1.0 EAposted in General Discussions
El nuevo enlace conduce a la página principal de este sitio, no al EA. ¿Seguro que está en este sitio web?
-
RE: How to creat visual EAposted in Questions & Answers
Technicallly you can create an EA searching back for past conditions met, but as q8carpenter says, a custom indicator Will always be a better solution for that.
-
RE: What is the secret of the MQ4/MQ5 converterposted in Questions & Answers
I'm not as programmer, so maybe the converter didn't do the job as expected.
-
RE: How to get the EA to buy when most of the moving average are upposted in Questions & Answers
As you said this distribution is working only when all conditions are true. What you can do is separating each group of them separatedly and then creating 5 int variables whose values art 0 or 1 only. Each separated grup will be linked to one of those variables so that when that specific group of conditions are met, its variable is moved from 0 to 1.
Then you create a new variable that will be the sum of all the previous ones. When the sum is at least 4, then the trade is open. That way it doesn't matter which conditions are true as far at least 4 of them are.
-
RE: BREAKOUT REVERSAL EAposted in Questions & Answers
Could you please share the project link instead of the compiled files?
-
RE: Capture and print horizontal line in box positon candleposted in Questions & Answers
Can you share the last updated versión?
-
RE: Uncode Indicatorposted in Questions & Answers
I'm not a programmer, but I think seb 0 is right.
-
RE: Variables basicsposted in Questions & Answers
Personally I wouldn't use any block of bucket of trades. You can work smoothly with group numbers. Apparently all your blocks are working with just one group (number 1). Just remove them and substitute them by the pertinent blocks properlyh identified with the group numbers.
-
RE: How to get the EA to buy when most of the moving average are upposted in Questions & Answers
Can this 1/5 of conditions be any of them or should they be a specific one?
-
RE: Increased martingale based on balanceposted in Questions & Answers
Have you searched for the many past threads focusing on martingale EAs? They are not sustainable strategies on the long term. Why not considering an alternative?
-
RE: BREAKOUT REVERSAL EAposted in Questions & Answers
Do you have any initial project to begin with?
-
RE: Need to take New Trade when 1st Not Closed but in Other Direction if Signal occursposted in Questions & Answers
Remnove the 'close trades' block from that position and create a separate block tree for them headed by a 'for each trade' block. Then link to it the consitions to be met for the trade to close and finally the 'close trades' block.
-
RE: Variables basicsposted in Questions & Answers
Block 6 is necessary for block 7 to work properly. However it's looking for sells only wheras it should look for buys too.
-
RE: Obtain value entry price of the current negociation.posted in Questions & Answers
You need to use the option 'as price fraction' in the formula block, not the first one.
