And just like that with one simple setting I broke the main login/registration page for the last 12 hours or so 
Posts made by fxDreema
-
RE: Forum updateposted in Questions & Answers
-
RE: Editing source codeposted in Questions & Answers
So these warnings (if they are warnings) are probably because of variable types that doesn't match perfectly. If you see here (https://www.mql5.com/en/docs/basis/types/integer/integertypes), different numeric types have different ranges of possible values. And sometimes when you try to assign value from one type to another, the range of possible values can be decreased, which is not a problem if the EA does not intend to use the whole range of values, but it's not a good practice to do that. That's why they are warnings, the compiler assumes that the programmer doesn't use the whole range of values and knows what he is doing, and just informs him that maybe there could be a problem.
-
RE: Editing source codeposted in Questions & Answers
Or, if you are talking about errors from the compiler, it sounds to me that these are not errors, but warnings. If the EA can be compiled and you can get the .ex4/.ex5 file, just check whether the EA is working correctly. Otherwise if they are real errors and you can't get .ex4/.ex5 file... well, they need to be fixed by someone who understands MQL
-
RE: Editing source codeposted in Questions & Answers
@ykmark said in Editing source code:
TesterGenerator mismatched data errors
These errors have nothing to do with the EA. Try another EA, you will see them again. These errors are because of missing history data in some timeframes.
https://www.earnforex.com/guides/unmatched-data-error-in-mt4-strategy-tester/
-
RE: Editing source codeposted in Questions & Answers
@ykmark Ah, you mean EA that is from somewhere else. Such EA does not contain that specific project data, written by fxDreema. Only EAs generated by fxDreema can then be imported back, and only because of that specific comment section at the bottom.
-
RE: Editing source codeposted in Questions & Answers
You can do what you want with the source code, but if you want to change the behavior of the EA from the source code, I think this is a waste of time.
You can import the EA back, but not because of its source code. The project data (blocks, connections, patameters and everything) is appended at the bottom in a comment section - this is what is the data that is imported. The MQL code does nothing when importing.
-
RE: Strange Timeframe Problem*posted in Questions & Answers
@Morpheus_0 said in Strange Timeframe Problem*:
If I'm looking for the MA cross within the last 40 candles, how would I set that up...?
There is one fancy block with stupid name "Indicator moves within limits". It's like multiple Condition blocks in one. While the Condition compares 2 values (or 4 when crossover is used), this block checks 2 values... and then 2 from the previous candle... and then 2 from the previous candle... as many candles as you choose.
So you can check for example whether for X candles the MA value was always above Candle Close, or not. But better try it.
-
RE: Strange Timeframe Problem*posted in Questions & Answers
@roar Yes, this option changes the id of the previous candle.
By default the crossover compares 4 values - 2 values from the current candle (or the one you choose) and 2 values from its previous candle. If the current candle is 0, the previous one is 1, and the difference (cross width) is 1.
This functionality is one that I regred adding, and I never found a reason to use it. The problem is that if you are using 40 candles difference, anything could happen inside them. Other crossovers and what not.
-
RE: Forum updateposted in Questions & Answers
I added few plugins to test them.
One is obviously emojis. This one was actually active for a while a long time ago, then I removed it for some reason. I think emojis are cool, but these are maybe too big

Another plugin is Q&A plugin, here are screenshots from it. I think it's very appropriate for this category, but the way it is used is not very obvious and it requires extra clicks.
And this one - Glossary plugin. I don't know if I really want to use it, I only verified that it works.
-
RE: Forum updateposted in Questions & Answers
@CPxiom To me the favicon here always looked like something red, because I always have unread notifications and this white number on red background appears there. Otherwise if it's clear (without notifications), because my browser is dark, it looks just like a white dot. Maybe I should find or make something that looks blue like the forum. But anyway.
-
RE: Forum updateposted in Questions & Answers
@roar said in Forum update:
But this one is such a classic 
Wait, that black thing was the favicon before? I don't remember it
I think it was the candle-rocket-cock favicon
But now that I look into files, I see only the black circle

-
RE: Forum updateposted in Questions & Answers
@CPxiom said in Forum update:
@fxDreema Hello, it seems favicon is missing, or it looks changed. Using Safari.

Favicon is that small icon that now looks like mirrored blue letter B. This is just the default NodeBB icon. I'm not sure whether I want to change it, because my icon is very stupid

The logo thing appears from time to time, and this is how it happened even before. I think it's because of two broken <meta> tags in the <head>, which seems to prefer to stay broken.
-
RE: Once per Dayposted in General Discussions
I think it's a problem of interpretation. Block names need to be short and I can't fit too much information in the name.
Also, I made this block a looooong time ago, it's been used by many people and I can't change it just like that. This is true for all blocks. I regret adding some of them, or their parameters. Not to mention that sometimes people get used to some functionality, even if it is stupid. Once I decided to remove the "Change Status to" thing, and immediately someone wanted it back.
Otherwise the idea is that the block can pass 1 time per date. Those hours filters in it are doing what a "Hours filter" block would do if you place it above "Once a day". With such period of time enabled, the idea is that the block can pass only when the time is inside this period. If you have a period from 1:00 to 5:00, it would pass at 4:59 if this is the first time the block gets executed. This depends on what blocks are above it. If there are no blocks above it, it would pass very close to 1:00, at the first tick after this time.
The "At certain hour" option is a little bit stupid, but the idea here is that the period is 1 minute long.
-
RE: Forum updateposted in Questions & Answers
@roar Maybe, I don't know. This quick reply field is an option and by default it's not shown. If it makes more problems, I can remove it or maybe change the theme.
-
RE: Forum updateposted in Questions & Answers
I turned off "When someone upvotes your post" and "When a post is edited in a topic you are watching".
-
RE: No MQL4 filesposted in Questions & Answers
Yes, the converter only converts .mq4 to .mq5 files.
MQL4 is a programming language and .mq4 files are the files containing the MQL4 source code, which is a human-readable text.
.ex4 files contain binary data, which is not human-readable. These files can only be read/executed by MetaTrader. Open such file in Notepad and you will see. I guess the "ex" in the extension name means "executable", although these files are not self-executed like .exe files.
If there is a tool to convert the data in .ex4 files to human-readable MQL4 code, this tool would be called Decompiler. But I'm not making such tools.
-
RE: Forum updateposted in Questions & Answers
Here are the user settings:

I remember changing only that "Follow topics you reply to". I see there are two "None" settings, I will set them to "Notification Only".About the image upload, I knew why it broke and I fixed it.
-
RE: Forum updateposted in Questions & Answers
It's very quiet in the forum and I guess there is a problem. I noticed some email confirmation things appearing... to be honest I have no idea what is this for.
In one of my browsers the /forum link started redirecting to /register/complete page, which I also don't know why it happens.
I disabled some GDPR shit in the admin panel, but who knows what else should I disable in this new version.
-
RE: Forum updateposted in Questions & Answers
Ok, I upgraded it. There were login issues for a few minutes, I got 2 emails about that, then I fixed it... I think. I wonder if the login process works fine now. And I mean the login from the main site - https://fxdreema.com/account/login.
If someone is having problems logging in (not an error, but not remembering that you are logged it), write to me an email. Or, logging in here from the forum should work.