You can just copy the blocks, and then use the "filter by type" menu.

Posts made by roar
-
RE: plz helpposted in Questions & Answers
-
RE: Please confirm I'm right...or not.posted in Questions & Answers
I think the stop-loss is not a level in this block, it is a value (distance) from the open.
-
RE: Why don't work well??posted in Questions & Answers
You have a kind of loop with your lotsSell, it can grow to infinity.
Try resetting it at some point or only using the formula once.

-
RE: Slide the furthest pending ordersposted in Questions & Answers
Hi!
I think sliding orders might be too complicated for this purpose. How do you put up the orders in the first place?It may be more practical to keep open orders to a maximum amount, e.g max 10 open orders:

-
RE: Making a grid....posted in Questions & Answers
Hello!
Here's how I would do it. It's a bit tricky for a beginner, but hope you will get the hang of it
Sorry I can't help you any further, as I got tons of work to do today. -
RE: How to set EA Password for 1 account ?posted in Questions & Answers
Something like this in the On Init -tab should work.

-
RE: Too much moneyposted in Questions & Answers
haha yeah that sucks, always getting too much money.
I had to buy a wider screen in order to show my bank account properly -
RE: Close newest and oldest tradeposted in Questions & Answers
You can't link different trade actions together, you need 2 paths for two kinds of trades: oldest and newest.
-
RE: Close newest and oldest tradeposted in Questions & Answers

If you set n=1, you can pick individual trades
-
RE: time check after every x minutes of M5 candleposted in Questions & Answers
Something like this should work:

Anohter approach would be to create some variable to track minutes
-
RE: My trash binposted in Bug Reports
@richard96816 Yeah, one way is to create an area and just write on the description box. I don't use it that much
-
RE: dynamic Take Profitposted in Questions & Answers

Just use that modify-block. Couple of things to remember:
- The tp modify needs to be on top of your logic tree, if you want tick-by-tick update.
- The pass-block is there just because every block needs a connection somewhere, otherwise its deactivated.
- If you use bollinger, remember to separate buys and sells
-
RE: Making fxDreema betterposted in Questions & Answers
Yes, fxdreema has a learning curve, as it is that versatile a tool. But once you get used to it, it is actually pretty intuitive and uses the basic logic of all coding languages.
This forum has very good chance of giving you answer to any problem, using the search function. What would you suggest to improve, for example? -
RE: Question about 'on trade (Event Data)'posted in Questions & Answers
When you find yourself copying the same block over and over again, there is usually a way to loop the process:

This method creates as many trades as you want, and assigns a special number for each one.
That number (group #) can then be used to control the trades.Doesn't really answer to your question though, just wanted to give another way of doing it

-
RE: Close newest and oldest tradeposted in Questions & Answers
@ambrogio For changing a minus sign to a plus sign.
Lets assume the "profitSum", thats the sum of the positive profit trades, example $12
Then the profit of the losing trade can be -$57. Positive is always bigger than negative, so we have to -1 * -57 to make it +57 so we can better compare -
RE: Close newest and oldest tradeposted in Questions & Answers
Mine works differently.

Here, take this .mq4 and import it to fxdreema so you get the exact same project. I also added a trade count condition for comfort.
0_1531746692796_hedge.mq4 -
RE: Here, take this profitable eaposted in Tutorials by Users
@richard96816 Agreed, fxdreema has some very versatile functions. It's very good to see other's ideas too, avoiding "tunnel vision" with the alone development.
Some say that sharing good eas doesn't happen because nobody would give away free money like that. I don't believe that approach at all - no matter how profitable your system is, there is always a risk present with trading, and the risk is higher if you don't even know the system you are using. So you have to learn the system, and thus you can also develop it further. Collaborative effort is the way to go
-
RE: Close newest and oldest tradeposted in Questions & Answers

The variables need to be reset at some point, otherwise the sum just piles up. Shared link somehow dropped that. I did that on the first loop block.
Tbh, I didn't actually do any test run with this ea, could still be faulty
-
RE: Close newest and oldest tradeposted in Questions & Answers
https://fxdreema.com/shared/fceTizc8
This one first calculates the amount of profitable trades. Then it checks the most losing trade against that profit sum, and if profit sum is bigger, close them all. Small losing trades will stay open. -
RE: Close newest and oldest tradeposted in Questions & Answers
It's a bit odd to pick oldest and newest, but this should do:
https://fxdreema.com/shared/QRnvqa97
