If only type (buy or sell) and profitability are needed, look at "Checkup" category.
Posts made by fxDreema
-
RE: Check last closed trade status.posted in Questions & Answers
-
RE: Trademark is beautiful, but gets in the way of my Comments!posted in Questions & Answers
On the other hand this logo is a signal that the EA comes from fxDreema. I wonder how long your Comment is, but because you are using direct way to put information in it, why just not put "\n" at the very beginning to start with one line offset?

-
RE: How to check entry conditions multiple timesposted in Questions & Answers
Indicators also changes because of ticks. Everything changes only because of ticks, so there is no need to repeat something when there are no ticks. If you repeat some conditions 10 times between two ticks, the results will be the same, because indicators depends on ticks.
If you want to repeat something say 10 times within a tick, find a block named "Free loop...". There is also one named "Sleep". But I can't find any reason to do this
-
RE: How to check entry conditions multiple timesposted in Questions & Answers
When creating EA, the main part of it's content is executed on every tick. That's why it is EA - somethings that monitors changes and takes actions when needed.
You can see 5 buttons above the main workfield and one of them says "on Tick" and it's normally active. What you place in this workfield will be executed again and again when a new tick comes. -
RE: Block help pop-up gets stuck in top left of screenposted in Bug Reports
Known bug, will check it some beautiful day

-
RE: Feature Requestposted in Questions & Answers
I thought that this is a bug, but it is really a feature... from old days
Anyway, removed. Available also in build 030 (re)uploaded just a minute ago. -
RE: fxDreema cannot find the expert advisor requested by youposted in Questions & Answers
Oops, missed that post

I have no idea why is this happens, and again... if I see it here, I will fix it, but I don't know how to replicate it on my PC

-
RE: fxDreema cannot find the expert advisor requested by youposted in Questions & Answers
No, variables and constants should not be linked in any way with this problem.
When you load some project, it should write it's ID into ".lastloaded.fxdb" file. That's how it remembers the last loaded project. The next time fxDreema starts, it looks inside ".lastloaded.fxdb" to know what project to load. If there is no such a project present, this warning message appears.
But this never happened to me, I think. Yes, it's possible that I'm missing something here, who knows... Can you tell me what's inside your ".lastloaded.fxdb" file, or at least is the record inside pointing to one of your existing projects? This is pure text file basically and it can be opened with Notepad. -
RE: source codeposted in Questions & Answers
Out of Lorenc Software website...
__
Licensing:If you are interested in using this product after expiration of your 10 day trial period then you can purchase a valid digital license directly via StrategyDeveloper. There are these licenses available:
1 month / 39 USD 3 months / 99 USD 6 months / 159 USD 12 months / 259 USD[/quote:13026rwr]
Guys, I wonder how many programmers out there hate me. So don't wonder if I raise the prices in fxDreema to match this market

No, I don't mean competition. I wonder if it worth it, because taking care of one more platform in the future does not make thighs better for the existing ones :))
And by the way, if we compare MT4/MT5 to jForex - is jForex better below M1, or it's just another aaaaaalmost accurate thing? -
RE: fxDreema cannot find the expert advisor requested by youposted in Questions & Answers
Oh no, I don't like bugs

There is a file named ".lastloaded.fxdb" inside "fxDreema/Data/experts" and it should contain the ID of the last loaded project. What's in yours ".lastloaded.fxdb" and is this file... locked or something?

-
RE: fxDreema cannot find the expert advisor requested by youposted in Questions & Answers
Without deletion it sounds like a bug for me, but unfortunately it does not happen to me at the moment 
-
RE: fxDreema cannot find the expert advisor requested by youposted in Questions & Answers
This message appears after you delete some EA, but after the deletion, no other EA was loaded, so the database still points to the old EA that is no longer exist. It's nothing bad, especially when you know that you just deleted some EA.
And this "blank" EA is one of yours, created some time ago - the one that fxDreema choosed to load instead of missing one.
If you delete all the EA's, a new "Empty" one will be created. In some situation you can see "Unnamed" one, which is because of some bug that I did not investigate, but "blank" one is your creation.
In any case, you don't have really missing EA's? No loss of data out there?
-
RE: source codeposted in Questions & Answers
I can, in theory, create another set of blocks for another trading language. The last time I had jForex installed on my PC was nearly at the time I started to program fxDreema, so I'm not really aware what are the similarities and differences between their API and MQL. What I know is that jForex can also import .mq4, but once I received a report from someone telling me that this conversion does not work with fxDreema's EAs.
One of the most important features from MQL used in fxDreema's API is "static" variables. There are many functions used as a piece of memory because they have "static" variable inside. I'm not sure that JAVA supports something like this natively.
Do you think that many people prefer to use jForex, or it is just something exotic? Let's say that currently there are 2 big sets of blocks that I have to worry about (MQL4 and MQL5), then there are 2 platforms (web and local), then there are 2 browser plugins (Connector for Firefox and Chrome)... so... if there is some other programming language out there, it's good to be the one that many people prefer to use

-
RE: fxDreema Connector stops working in Google Chromeposted in Bug Reports
Oh yes, the power of automatiozation

So, basically, 0.2 no longer works on your PC? Is it possible that I can investigate it on your PC... if you don't have what to do?
-
RE: fxDreema Connector stops working in Google Chromeposted in Bug Reports
Good explanation of the problem, really thank you

If 0.1 works well, work with it. The difference between both versions is the size of the .dll file inside, which is smaller in 0.2 version because I've made some changes in Visual C++ environment... but I'm not really sure what changes

Well, I think I have to wait for that problem to start happening here. Meanwhile, what is your free RAM normally? On both of you

-
RE: GlobalVariableSet - how to?posted in Questions & Answers
"if CurrentGV=PreviousGV" - to be true, you have to compare both EA variables, but not using GV. On both sides choose "Value (numeric)" instead of "Global variables in MT4" and load those variables or write their names inside the input fields.
-
RE: GlobalVariableSet - how to?posted in Questions & Answers
http://fxdreema.com/shared/iv2hjNL9c
Open MT4, hit F3, create two GV's with their default names (gvar1 and gvar2), put some values on them and you will see those values as a Comment on the chart.
But in this EA there is no really need to use EA variables to hold the names of the GV's, if those names can be used directly inside the blocks.
-
RE: GlobalVariableSet - how to?posted in Questions & Answers
I'm trying to understand what you are trying to do with these Global Variables

"/profiles/gvariables.dat" - this is the file where Global Variables are stored. And again, they should be used to exchange information between EA's on the same platform, or maybe to keep some parameters while some EA is down - but in this case the EA can create it's own file with information.
This is the function to get the value from some GV:
double GlobalVariableGet(string name)The only attribute of the function is the name of the GV - it must be text, string. What the function returns is the value of that GV, and the value is always numeric, double.
In your example you have two EA variables with initial value of 1, which is later modified, and that's ok. But you are also trying to use those numeric EA variables as names of GV. Non-sence.
What do you want to acheive?