"For each Trade" loads specific trade (or trades) and then it's parameters can be get from "Condition", from other blocks, or using the rest of the pink blocks.
Posts made by fxDreema
-
RE: checking trade priceposted in Questions & Answers
-
RE: back test and realposted in Questions & Answers
Well, to decide how accurate the backtest is, it's much better to know how the Tester works. The EA that is generated with fxDreema (and any EA in general) obviously work within that Tick event, but it's the Tester that generates those ticks out of M1 or whatever timeframe is available.
new69mart, you obviously "hacked" the Tester. Your EA actually exploits some weakness of the Tester. But it looks that at least it's clever enough to tell us what is the Modelling quality. 39% is not a big number, only this number alone tells us that the result is not accurate. But I can't fix this from fxDreema, this is because of MetaTrader

-
RE: Block "comment" stay in the chart.posted in Bug Reports
Can you give me a project that contains these 3 blocks and tell me what is expexted? I also can see your projects, but at least the latest one does not contain these blocks like this
-
RE: Count Position/Orders NOT working on .ex5posted in Bug Reports
In MQL5 you can have 1 position per symbol. If you buy 10 times, this still results into 1 position. You can only have more than 1 position if they belong to different symbols (markets).
I guess you are thinking that the block counts the number of deals who resulted into the current position. Visually multiple arrows are printed. But no, the block does not check this.
By the way I was never thinking about this. If I have to make this block again, I think I would make it this way, to detect how many deals there are in a position. Or I can make "Check trades count", but the last time I was working with those deals it was horrible, so I'm not sure how well such thing can be done
-
RE: checking trade priceposted in Questions & Answers
Maybe it will work. It's probably not the best way to do something like that, but if it works... The best way is to check parameters of the trade itself - time, price, whatever
-
RE: back test and realposted in Questions & Answers
Well, it shows that the modelling quality is 25%, which is bad. Even "Every tick" is in some cases too bad for realistic results - when you have short stops, short trailing stop and things like this.
-
RE: NAMING INPUTSposted in Questions & Answers
It means any number that is floating number, like 1.2345. There is another data type "float" by the way. Here is more: https://docs.mql4.com/basis/types
-
RE: How to turn off block after a winning trade?posted in Questions & Answers
But there is no block for turn ON, I only see turn OFF in the picture

-
RE: dead blocks and stubborn "check difference" blockposted in Bug Reports
Maybe problems with connection? When you select new indicator, information from the server is read. Normally there is very little lag and you should not be aware that for most things the server is requested. I am far away from USA and I have ping of 120ms with fxdreema.com, but normally I don't feel that something is working slow
-
RE: Turing Off EA after set $/Pips madeposted in Questions & Answers
I decided to add some Time filters in "Bucket of Closed Trades", because this block is more universal. Here is some example - https://fxdreema.com/shared/vG2Mmhzjd Here in the comment we can see the Count of closed trades since 00:00 of the current day. Profit can be calculated as well, I am showing Count because it's easier to see what is going on.
-
RE: Crossing Bollinger Bandposted in Questions & Answers
- Open this page - https://fxdreema.com/examples/
- Click Ctrl+F
- In the small field that opened start writing the word crossover
- Any modern browser will scroll the page where the first results are. It looks exactly like this - http://prntscr.com/a50skr Check those two examples.
Here is more about this topic: https://fxdreema.com/help/-/working%20w ... /crossover
-
RE: Turing Off EA after set $/Pips madeposted in Questions & Answers
What do you want to calculate exactly?
-
RE: share strategiesposted in General Discussions
By the way this soft is build from another guy in my small country
It looks that Bulgaria knows how to make EA builders 
-
RE: Use another indicator (Belkhayate kit)posted in Questions & Answers
Welcome (to the jungle)

Here is about how indicators work in general: https://fxdreema.com/help/-/you%20shoul ... indicators
And here is a little bit more of how they work in fxDreema: https://fxdreema.com/help/-/working%20w ... indicators Pictures are old and now the builder looks a little bit different, but not too much. -
RE: Crossing Bollinger Bandposted in Questions & Answers
"Condition" with x> or x< with Candle ID = 0 (which is the default case). Maybe I am missing something, because the question sounds too simple

-
RE: Turing Off EA after set $/Pips madeposted in Questions & Answers
It's like every third question is about how to find some profit these days
I think I'm gonna make some block tomorrow for this, because I'm tired to explain this over and over.Otherwise there are few ways I can suggest
- to define Variable, to reset it at some time and then when a trade is closed to add it's profit to the variable
- at any time to start looking into the closed trades and calculate the sum of their profits, and put that sum in a Variable again. I am talking for "For each Closed Trade" + other blocks here
- also using a Variable, to set the value of a Variable at some time (9:00) to the current Balance or Equity at that time. Then at any given time to calculate Balance (or Equity) minus that value. Of course, we are talking for the global account balance/equity here.
-
RE: How to find Elliot Wave Patternposted in Questions & Answers
Oh, I don't know. For this indicators are used I believe. They have settings, algorithms and so on. This is not a task that can be done in one particular way. EAs are mostly used for putting orders, while indicators do the calculations. Well, fxDreema does not produce indicators.
-
RE: DESKTOP VERSIONposted in Questions & Answers
Now the web version has different way of storing project files, which the desktop version does not understand. At the moment I have no plans of updating the desktop version

-
RE: share strategiesposted in General Discussions
What, live stream of an EA while running
Now I remember that long time ago I was thinking about sharing signals between people in something like P2P network 
-
RE: How to turn off block after a winning trade?posted in Questions & Answers
It's also easy to detect if the latest closed trade was profitable or not. The example from my previous post can be used (but to check profit) or "Check last closed trade profit", which is the same idea.