How can I use this info to find the ID with fxdreema. Will this work?: https://fxdreema.com/shared/mRL3fWN8c
Best posts made by vish
-
RE: How do I find the Chart ID of an opened chart?posted in Questions & Answers
-
For each objects block does not recognize text objectsposted in Bug Reports
I think "For each object" block does not recognize text objects. It has not worked with text objects in my tests.
-
How to get the EA to trade on indices?posted in Questions & Answers
The EAs I make on fxdreema don't seem to enter trades on indices. I would like to USTEC, US500, DE30, UK100, etc. I guess I need to change the pip size under options?
Here are the indices offered by my broker:

I also want crypto pairs to work:

Can anyone help me on this?
-
RE: Changing symbol without opening a new chartposted in Questions & Answers
This should also work on onChart tab

-
RE: Changesposted in Questions & Answers
Thank you for making such a useful tool; I have used many other similar tools but fxdreema is by far the best. It is great news that you are going to have more time on improving the platform. I hope you would also pay attention to the Bug Report section where I guess there are many valid bug reports that need your attention. It would also be super cool if you add the ability to create indicators too and I dont mind paying something additional for such a thing.
-
MT5 Indicator buffersposted in Questions & Answers
I have a custom MT5 indicator that gives buy and sell arrows. I want to use it in an EA on fxdreema. The indicator buffers looks like this:

So both buy and sell are on the same raw and therefore I can not use unique buffer numbers for buy and sell. Is there any workaround?
Latest posts made by vish
-
RE: How to calculate basket Break-Event price (weight average) by using ATR?posted in Questions & Answers
Try this Custom Code Block (mql4)
First Go to Variables tab, define:
basketPrice = 0
basketLots = 0
basketBE = 0
atrValue = 0
isBuyBasket = 1Then use this code in a custom code block
// Reset values
basketPrice = 0;
basketLots = 0;
basketBE = 0;
atrValue = 0;
isBuyBasket = 1; // Assume BUY by defaultint buyCount = 0;
int sellCount = 0;// Loop through open trades (current symbol only)
for (int i = OrdersTotal() - 1; i >= 0; i--) {
if (OrderSelect(i, SELECT_BY_POS, MODE_TRADES)) {
if (OrderSymbol() != Symbol()) continue;int type = OrderType(); if (type == OP_BUY || type == OP_SELL) { basketPrice += OrderOpenPrice() * OrderLots(); basketLots += OrderLots(); if (type == OP_BUY) buyCount++; if (type == OP_SELL) sellCount++; }}
}// Avoid division by zero
if (basketLots > 0) {
basketPrice = basketPrice / basketLots;
atrValue = iATR(Symbol(), 0, 14, 0); // ATR(14)// Determine direction
isBuyBasket = (buyCount >= sellCount) ? 1 : 0;// Calculate Basket BE
if (isBuyBasket == 1) {
basketBE = basketPrice + atrValue;
} else {
basketBE = basketPrice - atrValue;
}
} -
RE: Trademanager for MT5 Mobileposted in Questions & Answers
Do fxdreema EAs work on the mt5 mobile app?
-
RE: How to add a common TP price for a group of tradesposted in Questions & Answers
@urielacosta Calculate a weighted average price considering different prices and lot sizes and then add a TP in pips to this WA price which should be the common TP. But you need to do custom coding. I never tried that on fxdreema.
-
RE: MT5 Time frame is not giving the right figureposted in Bug Reports
Is what I have done wrong? Shouldn't I get 60 printed if I load the EA on H1 chart? I guess it's a bug.
-
MT5 Time frame is not giving the right figureposted in Bug Reports
MT5 Timeframe is not giving the right figure from H1 above

For instance above comment should show 60 on H1 but this is what it shows

Project: https://fxdreema.com/shared/24HiE65td
Any other experiencing this?



