Difficult to give you an answer without knowing what you have right now. Can you please share your project?
Posts made by l'andorrà
-
RE: EA shall check for orders after attaching to chartposted in Questions & Answers
-
RE: bull / bear candle pip sizeposted in Questions & Answers
ambrogio is right. If you set to candle ID 0 the block will be immediately executed. The problem is that it can happen hundreds of times within the same candle because price can move up and down that level many times.
-
RE: partial closing trades and moving slposted in Questions & Answers
Firstly, you don't need so many 'current market' blocks. You can use just one and then list all symbols you need in it separated by a comma.
You specify a fixed value of pips of 0 pips as a take profit. You should use the option 'No take profit' instead. This is why your trades are doing weird calculations. Your blocks 'modify stops of trades' is trying to do it with a take profit of 0 when you just want to move yous SL. Use the pink block 'Modify stop' instead.
-
RE: Why code blocks get executed on on Tick tab but not on on Timer tabposted in Questions & Answers
Thank you for your impressive effort trader.philipps.

-
RE: Blocks does not work please helpposted in Questions & Answers
Trader.philipps is right. Could you please share your project? Initially I never recommend to connect more than one pending order block in the same tree.
-
RE: Lot Size Fibonacciposted in Questions & Answers
Ok. Now I catch it. But why calculating it every 3 ticks?
-
RE: Why code blocks get executed on on Tick tab but not on on Timer tabposted in Questions & Answers
Please look at the final post of this thread:
https://fxdreema.com/forum/topic/3009/I-want-to-create-a-simple-EA/3
-
RE: Lot Size Fibonacciposted in Questions & Answers
@roar Just a quick question. If I understand it correctly, the first iteration would be:
nefb = 1 + 1 = 2
However, the first trade should be 0.001. I don't catch it either. Could you please explain a bit more?
-
RE: how do you use trailing take profit stop lossposted in Questions & Answers
What do you need exactly? Are you looking for a specific congiduration maybe? Tell us and we'll help.
-
RE: bucket tradesposted in Questions & Answers
Will you be combining automatic and manual trades? trader.philipps is right with the Magic Number. If you want to manage manual trades you will need to use 0 as a magic number, but then all other automatic trades will have to be given a different one. Then I don't know hoe the EA would do.
-
RE: Once per day bar placement ? On top or before the buy or sell ?posted in Questions & Answers
Following that logic, the most recommended is to use those blocks that will always or almost always be checked every single tick arriving to your platform.
-
RE: Economique calendarposted in Questions & Answers
Sorry. I forgot it. This one here:
https://fxdreema.com/forum/topic/8618/turtorial-expert-advisor-with-some-recent-issues-solved/8
-
RE: Once per day bar placement ? On top or before the buy or sell ?posted in Questions & Answers
It depends on your strategy, but in general seb0 is right. The higher position in your structure, the better.
-
RE: Import non fxDreema mq4 fileposted in Questions & Answers
seb 0 is right. You cannot import an EA that has not been created with fxDreema.
-
RE: Tutorial Expert Advisor with some recent issues solvedposted in Tutorials by Users
Absolutely impressive!

-
RE: How do I place a pending order for the last open position while removing the old pending order.posted in Questions & Answers
Isn't this the exact same thread of yours just reopened?
-
RE: HOW I CAN MODIFY SOME OPTION WHEN SLIPPAGE CHANGE ?posted in Questions & Answers
@trader-philipps said in HOW I CAN MODIFY SOME OPTION WHEN SLIPPAGE CHANGE ?:
With the Buy/Sell now block you might store the actual market price (bid/ask depending on direction) in a variable and after the Buy/Sell now block calculate the difference.
I don't fully understand that part. It's a market execution so the trade will be open at the current available price. How can you know the 'order' trade?