So, there are bugs? I'm surprised actually, because no one is reporting any bugs in the desktop version. Only sometimes people have problems starting it, but nothing in it - the blocks and so on 
Posts made by fxDreema
-
RE: Updated Desktop version petitionposted in General Discussions
-
RE: fxDreema affiliateposted in General Discussions
No. I personally don't like any form of advertising, I don't understand it and I just can't think of this

-
RE: MT4 vs MT5 for backtesting ...posted in General Discussions
MT4 was the winner and I think it still is... depends on what platform the brokers provide. MT5 started somewhere around 2010, but MQL5 was different and complicated for most people, so MT5 never got more popular than MT4. More than that, in MT5 we were only allowed to have 1 position per symbol. But not very long time ago they added "Use hedge in trading" option, so MT5 is now almost the same as MT4 in the way trades work. Also around that time they stopped developing MT4 anymore.
I'm not sure that those real ticks are really real. You know that in MT4 you can import history data from somewhere else, and you can import real ticks... but when you do that, you are using many gigabytes of data. Where are those gigabytes in MT5?
-
RE: Draw Rectangleposted in General Discussions
For rectangle you need to provide 4 values - 2 price and 2 time values. Those are the coordinated of 2 points on the chart. Imagine that you are drawing it manually - the first point is where you started drawing it, and the second point is where you stopped.

I started drawing this rectangle from the upper left point, as the yellow arrow shows.
-
RE: Incompatible variables between same or different Indicators in the same conditional decision block!posted in General Discussions
I'm trying to understand what you are trying to do, but I can't
Better don't give such names to the variables that are actually system words, it's confusing. The data type for Applied Price is ENUM_APPLIED_PRICE, it's not int. -
RE: problema con para crear un trailling stop de 2 faseposted in Questions & Answers
@timoteo21 said in problema con para crear un trailling stop de 2 fase:
Hola , tengo un problema a la hora de hacer un tralling stop, quiero que funciones de esta manera.
cuando el precio supere los 10 pip del precio de entrada . el stop loss se modifica a 5 pip en positivo y de ahi que funciones con el traling stop del metatrade ,pero solo puedo hacer la primera parte , si alguien me puede dar una mano para resolver la segunda parte seria de gran ayuda ,acepto codigo mql ,I used Google Translate to translate what you say, and this is the translation:
Hi, I have a problem when it comes to doing a tralling stop, I want you to function in this way.
when the price exceeds 10 pip of the entry price. the stop loss is modified to 5 pip in positive and that's why it works with the trailing stop of the metatrade, but I can only do the first part, if someone can give me a hand to solve the second part would be very helpful, I accept mql code ,I don't understand what is the first part and second part. Primera parte, segunda parte?? What are those parts?
-
RE: robotposted in Questions & Answers
Technically it is possible, but Martingale is in the Buy/Sell block, which uses particular Symbol name, so it's not possible in that block.
-
RE: How to make trailing stop continue to be active when the ea is deactivated from certain pair?posted in Questions & Answers
You are talking about "Reference price" that is Ask or Bid? If the price makes a new high this day, the trailing stop block should move SL according to this price.
-
RE: bucle :(posted in Questions & Answers
You are using variable pivothigh as a SL level, but this variable is never modified and its initial value is 0. As a result SL is 0. And then "Risk fixed amount of money" requires that SL is different that 0. The error comes from one function that calculates the lot size using SL.
-
RE: This works fine on MT4 but not on MT5posted in Questions & Answers
It looks that it doesn't work when "Oldest to newest" is selected. I will check what is going on
-
RE: Change semi-colons to commas in Write to fileposted in Questions & Answers
This block is old, there are people using it and I don't feel like I want to change something in it that could break something for someone

You can try to make a custom block if you know a little bit of MQL
At least you will be able to customize it as you wish. Here is how the current block looks like in https://fxdreema.com/studio/MQL4This is the code:
string filename = Filename + ".csv"; int handle = FileOpen(filename, FILE_CSV|FILE_READ|FILE_WRITE, ';'); if (handle == INVALID_HANDLE) { Print(filename," OPEN Error: ",ErrorMessage()); ~error~ } else { FileSeek(handle,0,SEEK_END); if (FileSize(handle)==0) { FileWrite(handle,"Time (local)","Time (server)",C1Title,C2Title,C3Title,C4Title,C5Title,C6Title,C7Title,C8Title,C9Title,C10Title); } if(handle > 0) { FileWrite(handle,TimeToString(TimeLocal()),TimeToString(TimeCurrent()),~Column1~,~Column2~,~Column3~,~Column4~,~Column5~,~Column6~,~Column7~,~Column8~,~Column9~,~Column10~); FileClose(handle); } ~next~ }The input parameters look like this:




... and for the others it is similar, only "Variable Name" has different number.... C2Title, Column2, C3Title, Column3 and so on.
Parameters are added with that "New" button and separators are added with that "--" button
-
RE: Trailing stopposted in Questions & Answers
If you want SL to start trailing only after there is certain profit, then use these "Trailing Start" settings
-
RE: Close all trades when open trades are in profit?posted in Questions & Answers
Take a look at the filter settings, especially the "Group" number. You have this for all blocks who deal with trades and orders. By default the value is empty... which is 0... and in some way this is connected with the magic number. But you can make it like this:

Also, the Symbol is also set to empty value, which means the current symbol. You may want to make it like this:

"Check profit (unrealized)" is the block to check the current profit from multiple trades. Or, you can also check the Equity in Condition.
-
RE: Hello, which variable or function controls the size lots?posted in Questions & Answers
I don't understand the question, what do you want to control?

-
RE: Wanted to subscribe .. but failing at simple grid setup - any help/guidance available?posted in Questions & Answers
The value for "Grid size" is expected to be measured in pips, some value like 25 for example. The difference between two price levels is a different kind of value, something like 0.0025. The problem is that "Grid size" is a simple input and there is no any alternative "Custom..." option. The easiest way to convert the value is to multiply it by 10000 or something similar, but for some symbols this will not be correct number. Or you can try this, I think it is also easy:

I don't understand that OR block. When you have it like this, you will get 2 pending orders every time. But maybe this is what you want...
-
RE: bucle :(posted in Questions & Answers
I don't understand what is going on here. What do you mean when you say that everything needs to be repeated, what is "everything"?
-
RE: How can I print the stop loss live?posted in Questions & Answers
Do you have only 1 trade at a time, or is it possible to have multiple?
-
RE: Poner ordenes pendientes en niveles de fiboposted in Questions & Answers
I see you are trying to create fibonacci objects with the EA, but here is something I noticed:

You have "fibo0" as a name of the object, but take a look at the first 2 parameters that are Yes and No now. In this case "fibo0" will be a prefix, not the name of the object.

Try with No - Yes, and then take a look at the actual name of the object that is created on the chart.