I have no plans. I'm almost done with the NodeJS version of the whole website and NodeJS is more desktop-friendly, but I still don't like the idea of having a desktop version. I know, people like it, but I don't. It is also interesting that even without active desktop version, people are still using the tool. I was expecting loss of people when I removed the link, but exactly the opposite happened 
Posts made by fxDreema
-
RE: New version of offline fxDreema?posted in Bug Reports
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
This is the biggest topic in the whole forum, I'm sure that I misunderstand you a lot

Do whatever you want with the files generated with fxDreema. I'm not going to chase people for selling them

MT4 can use its OrderClose() function to close only part of the trade. It appears that the trade is fully closed and then brand new one is created, but both share some parameters - open price, sl, tp... if I'm not wrong. I don't know about spreads.
-
RE: Buttons don´t workposted in Questions & Answers
All "Draw..." blocks can make multiple objects, or work with only one. Depends on the first 2 parameters. But if you need only 1 object, there is no good reason to have the block inside "on Tick", it's more than enough to run the block once in "on Init" and forget.
-
RE: Multiple Trailing Stopsposted in Questions & Answers
This is the option for such levels: http://prntscr.com/cr40f9 Well, not is %, in pips
-
RE: Converting decimal points to whole pointsposted in Questions & Answers
That conversion - to pips - is easily possible in this "Adjust" field. Just write something like +500pips, whete "pips" is a keyword and is then replaced by a function that converts 500 to the correct value, depending on the symbol
-
RE: Need help to build simple EAposted in General Discussions
kusilie, I have no idea how your EA looks like
-
RE: Question about monthly renewalposted in General Discussions
No, no, there is no subscription by the meaning of PayPal. Each payment it one-time. I use the word "Subscription", because it's not a product that can be paid one and forget, like smartphone or something.
Projects remain on the server, only the export limits comes back, but this does not break the projects at all. Also, when you export to .mq4/.mq5, a copy of the project is embedded into the file, so then you can import it back to fxDreema (in case you deleted the project for example, but you have the file)
-
RE: For each Tradeposted in General Discussions
Different means "not equal to", the opposite of "!=". These is no option to check that a value is between two limits in "Condition". Well, you can try "Indicator moves within limits", which I think with proper settings can do that
-
RE: Question about "Write to file" blockposted in Questions & Answers
I can see you have 2 blocks of these and they are set to the same file name, but their columns are different. How it works if you only work with 1 block?
-
RE: Problem with variablesposted in Questions & Answers
Put that "Variable" in Value -> Numeric instead
Or better do everything in one Condition. Read the description of this block to see how to do it with the Adjust field
-
RE: Buttons don´t workposted in Questions & Answers
Why do I think that I answered to this somewhere...

-
RE: Question on deleting pending ordersposted in Questions & Answers
It depends. Check the count of trades and then delete them - this is fine if for example having 0 trades means that pending orders must be deleted. Or detect TP event in "on Trade" and delete the orders there. Also try the OCO option which is available in the pending order blocks.
-
RE: Converting decimal points to whole pointsposted in Questions & Answers
Oh, this issue again. Tell me, how do you imagine this thing to happen in the builder? Now it's not impossible to do such things, but only with some custom functions that I don't recommend to be used.
Anyway, you can always multiply some value by let's say 1000. The problem with this is that the EA then will work correctly only for certain symbols. But maybe you don't mind. Look at the description of "Condition" to see more about the "Adjust" field and you can also use "Formula" block for small calculations.
-
RE: Trailing Stop - Variable as inputposted in Questions & Answers
Labels are text, write whatever you want to see on the chart. If a label have no text (which is by default), this row of information will not appear
If you want to set only the initial price, do that directly into Buy/Sell blocks, you will find custom (level) there as well. Then use whatever technique in Trailing stop to move it.
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
What community... Here are the properties to get this kind of information: https://www.mql5.com/en/docs/constants/ ... nformation This information is shared between MetaTrader and the EA
-
RE: Problem with take profitposted in Questions & Answers
Show some numbers or even pictures
People normally don't have such problems, maybe you are doing something while thinking that you are doing something else -
RE: Apparently this has never been asked!posted in Questions & Answers
In blocks, let's say in Condition, you will see "More settings". Click on it and extra settings will appear., one of which is Timeframe
-
RE: How can I upload my own indicator?posted in Questions & Answers
click here?
To add a new indicator (its input parameters actually), go to "My Indicators", then click on "Add Custom Indicator" and then on the right side you will see a button on the top. Click on it, browse to the file, load it and its parameters should appear. Then Click on "Update"
-
RE: OrderCheck() failed: Unsupported filling mode (10030)posted in Bug Reports
I think there is a bug now in MT5. Before, there were only these filling options I believe:
ORDER_FILLING_FOK (which is 0)
ORDER_FILLING_IOC (which is 1)
ORDER_FILLING_RETURN (which is 2)Now few more appear:
SYMBOL_FILLING_FOK (which is 1, not 0)
SYMBOL_FILLING_IOC (which is 2, not 1And they wrote a function IsFillingTypeAllowed() to check the allowed filling mode right here: https://www.mql5.com/en/docs/constants/ ... oconstants
But it seems that this function works correctly with SYMBOL_ constants, while ORDER_ appears to be the correct constants when opening positions. I finally found that, made some changes and now I hope that it works.