@breakertrader the strategy, lol
Best posts made by roar
-
RE: Any experts on fxDreema willing to build my EA for me?posted in Questions & Answers
-
RE: Array for distance of pipsposted in Questions & Answers
@ajmd97fx I think sorting your array would be nice
-
RE: Can I convert MT5 EA program to MT4 just by copy all the MT5 fxdreema blocks to MT4 EA builder?posted in Questions & Answers
Hi @realjoker, @l-andorrà might not have the time for detailed help for everyone asking, but he still does much more good than harm, dont you think? We shouldnt discourage helping on this forum, help is not that abundant in the first place.

-
RE: Counting Bars Questionposted in Questions & Answers
@cdwilder1 thats a very important question and I'm happy to know the answer, lol
Convert candle ID to time:
v1 = iTime(NULL,0, 123)
Put this code in a custom mql5 block and the open time of 123th candle is stored to variable v1.
https://www.mql5.com/en/docs/series/itimeConvert time to candle ID:
v1 = iBarShift(NULL,0, D'2020.02.22 12:00')
Put this code in a custom mql5 block and the ID of D'2020.02.22 12:00' candle is stored to variable v1.
https://www.mql5.com/en/docs/series/ibarshift -
RE: Fibo assistance pleaseposted in Questions & Answers
@ajmd97fx all right. Candle highs and lows surely work, but I think fractals need a bit different setup.
-
RE: percentage of account at riskposted in Questions & Answers
@leka-0 its a bit complicated, but here
https://fxdreema.com/shared/omHNw9vFc -
RE: Any luck on extending Take Profit?posted in Questions & Answers
@GTOAT777 you should make an example that is actually testable.
Here, check this one. TP is modified successfully.
https://fxdreema.com/shared/Uth3r2G5b
-
RE: variables vs contantsposted in Questions & Answers
@speedsk8r well that depends on your project, what you are trying to accomplish...
But in general, you should connect everything on one chain so the proper order is ensured; you should first update your variable and then use it, not try to use a variable before it has a value.
-
RE: variables vs contantsposted in Questions & Answers
The value will be stored in that variable so you can use it later.
-
RE: variables vs contantsposted in Questions & Answers
@speedsk8r that is probably not the right block for you. The block gives you a yes/no answer, not a price level.
Its probably better for you to use modify variables block and then select highest/lowest price from market properties.

-
RE: variables vs contantsposted in Questions & Answers
@speedsk8r if you want to take some chart value and store that value, a variable is always the way to go.
Maybe this helps
https://fxdreema.com/tutorial/builder/constants-and-variables -
RE: variables vs contantsposted in Questions & Answers
You change constants, computer changes variables.
Constants are constant from the computer's viewpoint
-
RE: variables vs contantsposted in Questions & Answers
@speedsk8r when you create a variable, usually it gets a default value of 0 unless you specify something else. The default value doesnt matter, the system will replace it anyway.
-
RE: Tips for robustnessposted in Questions & Answers
All I can say that your EA seems to work during higher daily volatility. But volatility cannot be really forecasted, so I cant give any answers there.

But this one is such a classic 