That amount is very low. Are you sure your broker will allow that?
Best posts made by l'andorrà
-
RE: Guarantee profitposted in Questions & Answers
-
RE: Closing all trades when the account is in a specific Profitposted in Questions & Answers
@jsauter86 Correct, but he should select 'Any symbol' on the 'Symbol mode' option of block ID 1. That way all open trades for all symbols will be considered.
-
RE: One candle rule, No Nonsense Forexposted in Questions & Answers
@philostam No, the problem is then the 'Once per bar' block. Because it will wait until a new bar to check if conditions are met. If you want an immediate new trade, just remove it, but I guess now problems will arise then. Not sure.
-
RE: at least 4 up bars above SMA 5 shift 5 and BUY, please fix this projectposted in Questions & Answers
@krystian Please do this:
- Remove all 'AND' blocks.
- Connect all blocks from the orange output semidot down the block to the white one on top of the block below and not the opposite as it is now.
- Select 'Candle ID 1' on both operands of block 34.
- Select 'Candle ID 2' on both operands of block 36.
- Select 'Candle ID 3' on both operands of block 37.
- Select 'Candle ID 4' on both operands of block 38.
-
RE: Multiple Entriesposted in Questions & Answers
@savagetrades Connect as many buy/sell now as you need in parallel.
-
RE: EA won't run when Stop Loss is a variableposted in Questions & Answers
@yoloyacht Additionally, you need to specify what math symbol is required for that 'brik' value to apply. Is it an addition or a subtract value?
-
RE: Where to find description of various stop loss and take profit methodsposted in Questions & Answers
@tonyramirez I'm afraid there is no specific documentation for that. We can try yo help you for any question about any of them.
-
RE: a problem with stochastic ma crossover eaposted in Questions & Answers
@axmed69 You need to create a boolen variable used as a 'switch on', 'switch off' control telling you when the crossing happened. Then you can combine it with the stochastic condition.
-
RE: Trading Zoneposted in Questions & Answers
@jsauter86 Personally I don't any any indicator doing that right now, but I'm sure there will be several ones on mql5.com. You can try there first.
-
RE: Close position after a specific time.posted in Questions & Answers
@ramimoujaes For your question one this is the simplest way to do it:

However, this will close the trade immediatley after creating it, so you will need another filter to know at what exact moment the EA is supposed to know when a new candle is open.
For your question 2 you can use this:

I forgot to add a 'clse trades' block below, sorry.
-
RE: Need help with Breakeven and Trailing Stop at a certain Percentage of Profitposted in Questions & Answers
@biztet Every roar's formula deserves to be studied and followed carefully.

-
RE: Closing Trade After Opening a New Trade?posted in Questions & Answers
@yoloyacht Do you mean closing the trade at the following candle after opening it no matter it is gaining or losing?
-
RE: colocar aumento de lotaje sumando cada 50 euros ganados 0.01posted in Questions & Answers
@kepler La forma más eficiente es crear variables para controlar esas cifras. Deberñías crear:
- Una Constante para especificar esa cantidad de 50 €.
- Una variable para modificar el valor del balance a medida que se añaden o restan paquetes de 50 €.
- Una variable para hacer de multiplicador de los lotes a medida que se modifica el balance.
- Otra variable para especificar los lotes en cada momento.
A partir de ahí ya podrías comparar los valores del balance para hacer los cálculos correspondientes. No es un proyecto trivial.
-
RE: Check Candle 1-5 if Price was higher then MAposted in Questions & Answers
@siggi12345 Yes, you can create a loop to get that same result, but don't worry to create 'ugly' block trees. If they work, they work. Period.

-
RE: Check Candle 1-5 if Price was higher then MAposted in Questions & Answers
@siggi12345 Man, I wish I was an expert at loops as roar is.
He is by the the 'loop man' here. Maybe him could give us a hand? 
-
RE: how do I make my ea to take trade after every 5 minutes?posted in Questions & Answers
@brend Just use the 'on timer' tab and programm it to work every 5 minutes through the 'Project options' window.
-
RE: closed trade in Journal/Log Fileposted in Questions & Answers
@siggi12345 You are duplicating loops for buys and sells. Considering that there will be just one trade per day, use one loop ('For each closed trade') block instead both buys and sells. Then use the other blocks identifying if it was a gain or a loss.
