Did your broker blocked those options through their platform? That happened to me once many years ago.
Posts made by l'andorrà
-
RE: Push notifications not workingposted in Questions & Answers
-
RE: Question on arrays in fxDreema. Part 2posted in Questions & Answers
@RGoo Thank you for the reply. That is exactly how I arrived here. I created simpler cases of the array and they worked as expected. I can make it work to store info correctly and to reinitialize them as far as there are no partial close. As soon as I include it nothing works because of the way those blocks store the ticket number.
I don't see where that 'last_i' variables is used other than being set into 0 when a trade is closed. What is its purpose?
-
RE: Question on arrays in fxDreema. Part 2posted in Questions & Answers
@seb-0 Thank you for the reply. The truth is that I need that ticket number for other parts of the bot that are not included here, so mastering how those blocks store the info would definitely help me with those other parts too.
Your suggested formula is what I have in mind, but for it to work I need the correct ticket number to be stored into the array. And that is what is not happening yet.

-
RE: Cross above MA and then cross below HMA before closing tradeposted in Questions & Answers
@jameshovey85 You are requiring that all conditions for blocks 349, 338 and 350 to happen at the exact same time. Is that a plausible scenario? I guess it isn't. You need them to happen at different moment in time, right?
-
RE: Am I missing something?posted in Questions & Answers
Interesting suggestions from both jstap and provenzano. Thank you all.
-
RE: Please Help Me how to remember or capture the initial open price of consecutive loss=0 every timeposted in Questions & Answers
Can you please share the link to the project? The screenshot is not clear enough to find the issue.
-
RE: Position Created block with failure.posted in Bug Reports
Yes, in that case the problem is a bug. But is there anything else conflicting that part of the bot? Is that the whole bot or just part of it?
-
RE: My first MQL5 array doesn't workposted in Questions & Answers
@jstap You can find it on my other thread with questions on arrays.
-
Question on arrays in fxDreema. Part 2posted in Questions & Answers
I'm moving closer to master arrays in fxDreema but I found an issue with some blocks that I simply can't move through. This is my test project right now:
https://fxdreema.com/shared/WKPCTo6ae
I know how to fill all arrays with the correct info when a trade is open and reinitialize them when it is closed. In my example I'm using just two trades but there will be many more in the final version.
The problem arises when I want to add partial close in between. If I switch off blocks 7, 10 and 11, ie, no partial close is considered, everything works smoothly. However, when they are switched on the arrays are not properly updated or reinitialized. I guess the issue is how both 'fully closed' and 'partially closed' options on blocks 7 and 8 are storing the value of the ticket number. I need to count how many times a trade is partially closed because different percentages will be applied accordingly. I'm using the ticket number to identify the correct trade and update that info, but to no avail so far.
Does someone know how the ticket is stored on both options? Any help will be fully appreciated.
-
RE: Am I missing something?posted in Questions & Answers
I see I can store the value of the initial trade, but I see there is no easy way to take the ticket number of the partial close. I will keep investigating.
-
RE: My first MQL5 array doesn't workposted in Questions & Answers
I finally found how to mark a thread as 'solved'. Why didn't anyone told me? :D.
-
RE: How to put multi variables into group in the block?posted in Questions & Answers
Do you mean different group numbers? You can type as many as you need comma separated.
-
RE: Position Created block with failure.posted in Bug Reports
Position created block will only draw the line when the position is hit by price, not when programmed on the chart.
-
RE: Please Help Me how to remember or capture the initial open price of consecutive loss=0 every timeposted in Questions & Answers
What do you exactly mean by 'consecutive loss = 0? Do you mean a collection of consecutive closed trades with a combined profit/loss of 0? I don't get the logic behind that.
-
RE: EA entry when there is trendline drawn by userposted in Questions & Answers
Level 0 means level 0% fibo, level 1 means the closest percentage fibo to the previous one. so it should be 23.6%, level 2 means 38.2% and so on.
-
RE: Martingale Sizing Errorposted in Questions & Answers
My first recommendation is not using martingale in any case. It is not a strategy but a betting system that always loses in the long run. However, if you need one, here you have my personal project. This is the way to create a customizable set of lot size restart:
https://fxdreema.com/shared/6o0uTdg3e
As you can see you will need a specific structure to calculate the new lotzise. If you are not used to using variables that can be tough.
-
RE: how to insert indicator into another indicatorposted in Questions & Answers
You can always hire a programmer to make it real for you. You can find many cheap programmers on fiverr.com.
-
RE: How to find expired pending trade variables?posted in Bug Reports
I'm not sure which one of them could be used to take info from an expired pending order. Did you try to use a 'for each closed trade'? Technically it wasn't closed but I don't see any other block searching for that info right now.
-
RE: Am I missing something?posted in Questions & Answers
That is what I need! How can I get the number of the new ticket after the trade i partially closed. I created this example to see how the ticket number moved from the initial value just after the trade is open to the new value immediately after it is partially closed, but it doesn't work.