What I am talking... the parameter names in the indicator file does not matter. Try to rename Period to something else, I think it will work.
Posts made by fxDreema
-
RE: Custom Indicator parameter value errorposted in Questions & Answers
-
RE: Can't trace indicatorsposted in Bug Reports
I'm not sure what I'm looking on your screen. Is the indicator work in your MetaTrader when you put it there manually?
-
RE: Custom Indicator parameter value errorposted in Questions & Answers
Aaaa maybe the problem comes from the fact that there is a Period variable already, this is the Period parameter that exists for all indicators. So I guess there is a collision that happens. This is something that I'm aware that it's possible to happen for years, you are just the first one to report that. In the past the Period variable was named TIMEFRAME, but lately I renamed it to Period. I also renamed SYMBOL to Symbol and SHIFT to Shift. I guess that I have to review how custom indicators are used in the system and who knows when will I do that. My suggestion is unfortunately to rename that variable in the indicator itself, this will probably fix the problem.
-
RE: Phantom variable entriesposted in Questions & Answers
This mouse-wheel feature simply works over all input fields in general. I personally use it a lot, because I'm lazy to type on the keyboard. And I'm used to move the mouse away from such fields when I scroll

Most people don't have so many variables, but I see that there is a bit of horror going on when their number is so big. I remind myself to do something about this, but I also remind myself of other things

-
RE: Objects in multi-timeframe projectsposted in Questions & Answers
To be honest, I still don't understand what this chart id option is, or how should I work with it
-
RE: Multiple strategies in one EA? (Not working)posted in Questions & Answers
I think you have 2 identical groups of blocks and I guess that when you see a trade, they are 2 trades at the same time. I don't see second strategy
-
RE: EA compileposted in Questions & Answers
Error message or something? I see you don't have any projects at the moment.
-
RE: Simple Crossover Detection Not Workingposted in Questions & Answers
I tried the first example I have many vertical lines.
This is what I tried: https://fxdreema.com/shared/c2HtaLwyb
And this is my result:

The same thing, but with another object:

-
RE: Can't trace indicatorsposted in Bug Reports
in "on Tick" I have Pass -> Trace (with the indicator selected inside). It's pretty simple.
-
RE: Not Secure Connection On Chrome Browserposted in Bug Reports
I updated the certificate, I hope that the website can be accessed from all
-
RE: Not Secure Connection On Chrome Browserposted in Bug Reports
So, version 66 landed already. I'm aware that this problem was expected at this version, but the certificate expires in May anyway, so I was thinking to update it in few days. It looks that I must do it now

-
RE: Can't trace indicatorsposted in Bug Reports
The problem is with this particular indicator, for some reason fxDreema cannot read its parameters. I can only speculate that this has something to do with the russian language inside.
Here are the parameters. I tried it and it works:

Those are the 2 buffers:

-
RE: MT5 projects only: "For each closed position" not working properly when "Buy/sell pending order" blocks are usedposted in Bug Reports
I think I fixed these problems.
For Martingale in the "pending order" blocks, I'm confused how it should work. Normally this strategy requires one position at a time. But these are pending orders - they don't even exist. If you place a new pending order with Martingale, what should be its lot size, from where it should be calculated - from some previous position or from the previous pending order? And I think that every answer to this question is correct and incorrect, because Martingale is not supposed to work like that

-
RE: MT5 projects only: "For each closed position" not working properly when "Buy/sell pending order" blocks are usedposted in Bug Reports
Ok, here is mine easy to test example - https://fxdreema.com/shared/mRvSlNKW Now I got the problem every time and also quickly.
- Initially I create 1 pending order and 1 trade. The order has expiration of 12 minutes and expires before the trade is closed by SL.
- After that in "on Tick" a new order is created and the EA is self terminated.
That second order is expected to have lot size of 0.2 lots, but it opens 0.1 lots. If I remove block 2 (the first pending order that expires) everything is fine with the second order, it opens 0.2 lots. So it looks that something is wrong with that first order, maybe because of the expiration.
I'm sleepy now and I think I am going to sleep, but I will try to fix this problem tomorrow.
-
RE: MT5 projects only: "For each closed position" not working properly when "Buy/sell pending order" blocks are usedposted in Bug Reports
I don't know what happens, but I was able to see the problem (always 0.1 lots in Martingale) once and then magically everything works fine. Very strange, I think this happened with your "Comment" example, and also few months before when another guy reported something like this. I wonder what someone else can see - is there a problem?
-
RE: MT5 projects only: "For each closed position" not working properly when "Buy/sell pending order" blocks are usedposted in Bug Reports
I think that the problems happen when the orders have expiration, I will make some tests to see what is wrong.
-
RE: Can't trace indicatorsposted in Bug Reports
You mean MQL4/Indicators/OsMA.mq4 ? I tried this and it works for me
-
RE: MT5 projects only: "For each closed position" not working properly when "Buy/sell pending order" blocks are usedposted in Bug Reports
This is where it appears to me:

What if you move the chart left-right with the mouse a little bit? Sometimes objects are printed with delay in MT5.
-
RE: Bucket of closed tradesposted in Questions & Answers
@pipperoni All the parameters of this blocks are just filters, designed to select only certain trades. The last parameter is a must when working with closed trades, because in normal situation you may have 100s of closed trades and you don't want to select all of them. So this parameter only makes sure that no more than 10 trades are selected. If there are 5 trades in this period, they will be selected. If there are 15 - only 10 of them.