Who wanna read this
I see some that some classes are used and no, I don't use classes very much.
Posts made by fxDreema
-
RE: Zero or negative profit in optimizationposted in Questions & Answers
-
RE: Custom indicator valuesposted in Questions & Answers
Some indicators show continuous lines, others show arrows here and there. For arrow indicators, where there is no arrow, the value is EMPTY_VALUE. And most of the times, if you want to get the current value of such indicator... it is actually the value from few candles behind, because arrows are placed somewhere in the past. Try with Candle ID bigger than 0.
Try this block to look at the values:
https://fxdreema.com/demo/mt4-trace-multiple -
RE: Switch off EA if no operation is performed.posted in Questions & Answers
I'm not sure that Terminate will work in optimization. You can check if there were trades created or closed in the last few days.
- Bucked of Closed Trades - this one has time filters inside. Here is how to use these blocks: https://fxdreema.com/demo/mt4-bucket-trades
- Check profit (period of time) - I made this block for such cases, when people want to know what happened in the last day(s). Normally used to check when certain profit is reached, but you want the opposite. I didn't tested it for that situation, but I hope it will work.
- For each Closed Trade (set it to not more than 1 history trade) - > check age - the idea is that if the first history trade that is found is older than what you want, then you can run Terminate or whatever block.
I noticed that the optimizer is much slower that regular backtesting and I don't know why. Can you confirm the same thing? I mean... let's say you backtest one EA for 1 minute. Then, does it take 2 minutes in the optimizer for 2 iterations, or it takes more time?
-
RE: Once per bar , Once per dayposted in Questions & Answers
There are no loops. The "loop" is that On Tick event where the blocks are, so they run on every tick. Those blocks are something like filters - you run them 10 times, they only pass 1 time (per bar, per day)
-
RE: Keeping track of pips lost...posted in Questions & Answers
Try to understand these blocks here: https://fxdreema.com/demo/mt4-bucket-trades
-
RE: Zero or negative profit in optimizationposted in Questions & Answers
I think that MetaTrader eliminated those by itself
-
RE: Delete object block not workingposted in Bug Reports
It looks that there is some problem. I still don't know what, but I will eventually fix it.
-
RE: Delete object block not workingposted in Bug Reports
You probably copied blocks between MQL4 and MQL5. Sometimes this doesn't work for some blocks. This is of course something to be fixed, but it happens right now.
If you manually created this block, then probably something wrong happened and it was not created successfully. I just updated scripts a little bit, so now until the new block is created, you will see it transparent. And if can't be created it will remain transparent, which will tell you that something is wrong.
-
RE: New version of offline fxDreema?posted in Bug Reports
I have similar system for the projects, there is such script somewhere that will always convert old project to new project. I prefer to not have it

-
RE: Custom Indicators not Uploading Correctlyposted in Bug Reports
As usual, I can't see problems
Can you give me some indicator and basic instructions of what to do to see the problem?But with .ex4 files, you can't use them directly to get information from them. fxDreema reads only .mq4/5 files.
-
RE: Fractalsposted in Questions & Answers
Use Fractals with at least... I think it was 2 or 3 for Candle ID
So you can mention a whole group in a post. By the way I'm not watching at my notification thing up there in the forum at all. It shows me too many things

-
RE: After upgrade I lost the remains days counterposted in Questions & Answers
@guille4 But do you also lost your abilities, or only the indicator? I mean, is the problem more serious or only cosmetic? And do you have the table here at the bottom? https://fxdreema.com/purchase
-
RE: How do I get fxDreema to load up less instances of my custom indicator?posted in Questions & Answers
Check if the indicator is added properly in fxDreema. When the number of input parameters is wrong, this happens. If everything is fine, the indicator must be loaded once. I use iCustom() of course.
-
RE: does my block 7 & 8 really ensure 1 trade at a time?posted in Questions & Answers
What the... Is it possible that something wrong is happening because you are using different setup? After all, it looks that you are the only one with this problem at the moment. When someone has unique problem, this is mostly because he is doing something unique. But what is the problem exactly I can't tell, because my setup is like normal MetaTrader.
Not at all, this forum is brand new and the only one available for NodeJS... and I think its good... when you understand how it works

-
RE: Moving Averages in RSI indicator boxesposted in Questions & Answers
I don't remember what I tried. I wanted to make a special block for this, because it's not possible in Condition (where you have place for 1 indicator of each side).
-
RE: Can't compile projectsposted in Bug Reports
I'm aware of that right now. I'm currently trying some backup procedures on the server, but the system become overloaded and things are happening slowly. Plus, there is a 10 seconds timeout for the compiling requests, so the builder just stops waiting and nothing more happens.
First i will remove that timeout, because unfortunately even if something is fine, metaeditor.exe (which is also the compiler) always starts very slow, with at least 2 seconds delay, which makes all compilations 2+ seconds slow. Very bad, I tried to find a way to resolve this, but no success.
-
RE: New version of offline fxDreema?posted in Bug Reports
I once tried something else as well, something like NW (nwjs... node... something, I forgot the exact meaning). But I personally don't want to make desktop versions anymore, it's not only the technical difficulties
You can see how bad I am when I'm trying something new. But when something wrong happen on the server, I can do something about it and fix it directly in the database. Also, I tend to change the structure of the data that is stored and on the server I can write a script, modify the whole database and delete that script forever. While in the desktop situation, everyone has its own database locally and because of that I must thing for supporting old data that is created months and years in the past. Plus, I really don't like the desktop version from the beginning. I feel that I'm repeating myself too much, but I personally don't want it around. I am a web guy, I never intended to make anything for desktop, I just don't like desktop applications, versions, serial numbers and so on. Isn't there some other EA builder out there that is desktop-based? I know I'm not supposed to talk about about other EA builders, but if desktop is what some people want and I can't give it to them, well... everyone is free to use any product 
-
RE: Moving Averages in RSI indicator boxesposted in Questions & Answers
Nope. There is some iMaOnArray() function in MQL4 and once I tried to make it work somehow for the builder, but I remember that I decided that it is not possible... I forgot why
