@l-andorrĂ
I don't use them (they are black magic numbers as far as I am concerned), but there's that filter option on most blocks:

Posts made by roar
-
RE: Rookie question on Magic numberposted in Questions & Answers
-
RE: Is there a way to run EA with computer off?posted in Questions & Answers
@cpxiom The interfering would happen, for example, if EA1 checks some open trade's features and make some decisions based on that. But actually that open trade was made by EA2, which doesn't follow the same rules. This problem can be avoided with group numbers and such, but there is always a possibility for error in some part of code.
I saw that a good approach would be to have many EA's to even out the equity curve, with not so perfect EA's, but good.
Well that's basically the modern portfolio theory

To make it work, different EAs' returns should have negative covariance, so that the bots don't just amplify each other's ups and downs -
RE: Is there a way to run EA with computer off?posted in Questions & Answers
@cpxiom said in Is there a way to run EA with computer off?:
@miro1360 and anyone... Hello, just a quick question... Why multiple instances of Mt4?
Maybe silly question
but can't we open 2, 3 instances of same chart, same pair, in case we have several EA's for the pair.
I ask this as best practice. How many EAs on one Mt4, if one per chart/pair.
Thank you.I guess it's for testing and documentation purposes. If an account has multiple different strategies running simultaneously, it's sometimes hard to tell which strategy yields the actual profits.
EAs interfering with each other's algorithms is whole another matter.
-
RE: Any idea why this EA won't take any trades?posted in Questions & Answers
You have restricted it to only one minute every day. Together with "Once per bar" activation, the algorithm never gets past block #2

-
RE: exemple button helpposted in Questions & Answers
@ken-0 It takes time, because the EA updates on every tick (see the "on Tick" tab on top). If next tick happens 4 seconds later, your trade opens 4 seconds later.
If you absolutely need faster execution (even if market is still), use the "on Timer" tab and modify the refresh time from project settings.
-
RE: Trail pending orderposted in Questions & Answers
You are using "Trailing stop" instead of "Trailing pending orders" in the current project
-
RE: How to calculate Moving average on RSI???posted in Questions & Answers
There is no fast way, only using some custom indicator or arrays. If youre new, this is not the easiest project to begin with...
-
RE: Force EA to stop working when reaches profit per day !!!!!posted in Questions & Answers
Hi!
Lets store the profit value (in pips) to a variable called dailyprofit
-> Once per daily bar, set dailyprofit as 0
-> When trade is closed, add result to dailyprofit
-> Before opening new trades, check the P/L limits
https://fxdreema.com/shared/6IcQU502d -
RE: If original condition/signal has changed move to breakevenposted in Questions & Answers
@jzfusion
Should be simple as this:

-
RE: Can't find how to draw numbersposted in Questions & Answers
@l-andorrĂ
It seems somewhat working, just needs some fine-tuning. Anchor type is in left by default, centering it will look better.


-
RE: Bug: Wrong Candle Valueposted in Bug Reports
@l-andorrĂ That seems to be an actual bug in the builder, I can do nothing but hope the admin fixes it...
-
RE: Can't find how to draw numbersposted in Questions & Answers
The default settings on "Draw text" are almost enough, just change the price parameter

-
RE: Bug with DoubleToStringposted in Bug Reports
@gsmtricks Just replace it to the function:
MathFloor(Rate * 100) / 100Hope it works!
-
RE: Bug with DoubleToStringposted in Bug Reports
@gsmtricks
MathFloor(12.19999999999 * 100) / 100
^^ This should return 12.19 -
RE: Candle close as % of rangeposted in Questions & Answers
@turelforex Do you mean comparing to the candle itself, or the previous candle?
Can you perhaps draw a picture?



