How did you convert it? What kind of errors does it give?
Posts made by roar
-
RE: Having trouble creating a MT5 EA even after converting it from MT4.posted in Questions & Answers
-
RE: How I use FXdreema For BackTest Multi Pairs By One EA In The Same Time ? In MT5posted in Questions & Answers
Can you share your project?
-
RE: Having trouble creating a MT5 EA even after converting it from MT4.posted in Questions & Answers
Can you give some more information? Did you get the .ex5 file?
-
RE: How I use FXdreema For BackTest Multi Pairs By One EA In The Same Time ? In MT5posted in Questions & Answers
This, before all other blocks

-
RE: How I use FXdreema For BackTest Multi Pairs By One EA In The Same Time ? In MT5posted in Questions & Answers
Use the "set current market" block
-
RE: How to create sl under bollingerbandposted in Questions & Answers
What do you mean, 3 trades? I havent used the % risk in a long time, should look into it...
-
RE: How to create sl under bollingerbandposted in Questions & Answers
This sets the fixed level at the moment the trade is opened.
If you want the sl to move with bb, use "once per bar" -> "modify stops of trades" instead.

-
RE: Trace lines open order to close orderposted in Questions & Answers
I think this should work https://fxdreema.com/shared/mXKoz8wae
-
RE: Write To File: Swingposted in Questions & Answers
Like, just add these blocks to your current project:

Then, run mt4 backtest

The data will be in the journal now

Use notepad++ to open the .log file

Paste it to excel, the format will be messy at this point, we can use formula =RIGHT(C1;(LEN(C1)-51)) to pick only the interesting part to column L.
Hit Ctrl+enter to apply the formula to entire column.

I know, this is not optimal approach by any means, but it works in a pinch

-
RE: Write To File: Swingposted in Questions & Answers
I think the "write to file" needs a specific file path, like "D:\Metatrader..."
I am too lazy to have ever figured it out, instead I have used my own dirty stop-gap solution:
Just write the variables to your mt4 journal tab, with fxdreema block "Log message". Then generate the .log file and use some other programs (notepad++, excel) to further arrange the data -
RE: Stop and reverse strategy(No martingale)posted in Questions & Answers
@seemab Hi! I dont know about any courses, never participated on any, lol

You can freely add custom code to your fxdreema blocks. I have learned by trial and error x 1000 000. -
RE: Making a EA base on a pictureposted in Questions & Answers
@setsuna
Almost right, just put the adjust to the other side, with the candle 2 open.I think the adjustment as "candle ID 1 close is above candle ID 2 open even though we lifted it by 1 pips"
-
RE: Issue with a counter CCI last 5 candles below levelposted in Questions & Answers
This is how I'd loop it. There is a dedicated loop block in the builder, too, but it is not necessary. You have to be careful though, if the loop never ends you will get a stack overflow error.

https://fxdreema.com/shared/h2FzCXa3bNow that I think of it, this would probably most easily be done with the "indicator moves within limits" block, lol
-
RE: Issue with a counter CCI last 5 candles below levelposted in Questions & Answers
Hi!
The method with 5 different blocks should work just fine, although a looped solution would be my choice as it would allow to select any number of candles.
How can you know it doesnt work? Try chopping your strategy to different pieces and test each one alone. The draw line -block is great for troubleshooting with visual backtesting.Why the green counter blocks? Have you tried without them?
-
RE: Making a EA base on a pictureposted in Questions & Answers
You want to use the "adjust" field there. Check the example picture:

-
RE: Unwanted Trade Triggeredposted in Questions & Answers
Maybe your current trade is different group number, or manually opened?
Try setting the group filter to "all":

-
RE: Stop and reverse strategy(No martingale)posted in Questions & Answers
Here's the other project with RSI. I understand the "engulfing" as higher high + lower low in a candle. This reduces the entries quite a lot, can't say if it is good or bad. I used some variable and constants tricks in the project, it may take a while to wrap your head around it, lol


https://fxdreema.com/shared/Cy0GAae1c
If you get the project by importing the .mq4, it automatically sets the variables in place for you:
0_1548539085270_SAR.mq4 -
RE: Stop and reverse strategy(No martingale)posted in Questions & Answers
We can set the TP with "modify stops", connecting from the FALSE output of "No trade".
Edit: oh you can actually do the same thing directly from the Buy now / Sell now block.

I only backtested to see the logic is ok. I don't expect this to make profit, although it is a nice start, and good practise.
There is a simple "thought test" you can perform: if someone else has probably tested the same thing before, then it will probably not be profitable. Someone has surely tested 2 bears 2 bulls before, so its no good. You have to make something more advanced. Innovate.
But as said, it is still very good practise in this business.

