That depends on how the indicator provides that information. fxDreema can catch infor from indicator's buffers or objects, no matter what time frame you need. However, if the info is not available on any of those formats, then you will need custom code because fxDreema is not doing it any other way AFAIK.
Posts made by l'andorrà
-
RE: Compare Chart Object values - Multi timeframeposted in Questions & Answers
-
RE: Risk % (Percent) on equity doesn't work properly - Opens lots higher than it should beposted in Questions & Answers
AFAIK there are no changes here yete. You should contact the admin directly to let him know.
-
RE: BE and Trailing Stop Modifyposted in Questions & Answers
@ellemitless Then you can do this (for buys only):
https://fxdreema.com/shared/wCTDhILhe
You'll need to replicate it for sells.
-
RE: BE and Trailing Stop Modifyposted in Questions & Answers
And what happens when both conditions are true at the same time? Yes, I know that can happen very rarely, but you need to take that into account too.
-
RE: Same Color Bar Testposted in Questions & Answers
I don0t see any issue on the logic. I see you are using price percentage as SL. Are you sure you are using a reasonable % for your balance while testing?
-
RE: Gap Not Workingposted in Questions & Answers
@xburbx I'm afraid I can't visualize the problem. Can you please share a screenshot of what you mean?
-
RE: ORB Not Triggering Short Tradesposted in Questions & Answers
You are requesting to program the pending orders at the exact same time you are checking for both buy/sell conditions. This is why only buys are programmed, because that is the only condition that can be true. The sell condition cannot be true at that exact time. You need to check those conditions BEFORE the moment those conditios are checked, not at the exact one.
-
RE: No puedo iniciar un proyecto nuevoposted in Tutorials by Users
¿Te importa señalar exactamente cuál botón CREAR has usado?
-
Where are comments printed now?posted in Questions & Answers
I'm using this custom code for years now on MT5:
*string cmt = "";
cmt += ", " + "Max win" + max_win;
cmt += ", " + "Total: " + total;Print(cmt);*
Up to the last MT5 update, a log file was created with the variables data I show. However, now I can't find it any more. Could some one please help with this? Where is the ne log file created now?
-
RE: Backtesting Always slowposted in Questions & Answers
@alexitoeve50 IMHO, hat will never happen. We can use fxDreema precisely because it is using A LOT of unnecessary code. Just take a look at the condition block. You can select a huge number of combinations within. The prece to pay for that is more than 3000 code lines. And that's just one only condition blocks. Now multiply that for every other condition block on your project.
-
RE: The price must not fall below LNDlow from 13:00 of the previous day to 9:00 of the current dayposted in Questions & Answers
@j4nc0 Ok. Then you will need to store the values of thos min/max into 2 separate variables and then use them as the values to compare to current price. Obviously, those variables will need to be reset on a daily basis.
-
RE: Orhpaned constants when running EAposted in Questions & Answers
@doeveR All those variables were created because their boxes are ticked like this:

Just untick them and they will disappear.
-
RE: on timer of on tick chartposted in Questions & Answers
@doeveR You can contact him directly here:
-
RE: Backtesting Always slowposted in Questions & Answers
Sadly this is one of the side effects of using fxDreema. In order to make it easy to build almost any strategy you can imagine, a lot of unnecessary and innefficient code is necessary. This is the trade of that we need to accept when using it.
-
RE: complete guide or manual for fxdreemaposted in Questions & Answers
@faisalfiaz2002 Sadly, there is nothing like what you requested. This is why people like jstap or me offer what sktsec mentioned. Then you can find some Youtube channels offering hints and tips (mine included). Other then that, coming here and asking for help is how 99% of all of us learnt how to use fxDreema.
-
RE: best broker that has good history for backtestingposted in Questions & Answers
Do you mean for free? The only one I know is Dukascopy.
-
RE: Gap Not Workingposted in Questions & Answers
No. Only specific price levels can be used in this block. That 'candle total size' option is not price level, but a pips distance. The block will not work if you choose that.
-
RE: Same Color Bar Testposted in Questions & Answers
I see no problem with this logic. Is this the whole project or just part of it?