MetaTrader 4\tester\files
Posts made by fxDreema
-
RE: How to write to a csv file and where to find it?posted in Questions & Answers
-
RE: problems with eaposted in Questions & Answers
MetaTrader ? fxDreema version (local, web)? Block?
-
RE: Display time (hh:mm:ss) using commentposted in Questions & Answers
MetaTrader 4 or MetaTrader 5?
Try with Value -> Time
-
RE: Price cyclesposted in Questions & Answers
It looks correct. If you want to know what is the value of any indicator or just any numeric value, there are few blocks that can output information, like "Indicator tester" or "Comment"
-
RE: Price cyclesposted in Questions & Answers
http://prntscr.com/7f2c0o
Object Description is NOT a price level or something numeric, this is a text (string). -
RE: Error in OnTick functionposted in Bug Reports
If you are talking about this - http://prntscr.com/7f1x8u - then I wonder how it's possible for you to not know that a single block like this is excluded from the project, which is some rule that exists from the very beginning. That's why I added this block called "Pass" - it does nothing, but when connected with other block it does the magic to put the other block into the output code
So, just connect one "Pass" block to "Write to file" -
RE: Compilation errorsposted in Bug Reports
Is it this or it's something else... because some things are disabled when optimizing, like working with objects or timer events. This is one of the things where I can't say what is the problem and as I can only guess, then I think that TeamViewer can make things faster

-
RE: pivot need timezone shiftposted in Questions & Answers
Can you give me some example or a screenshot of what is expected and what you got as a result? I can see your projects, but in your newest one I can't see pivot points. Maybe you did something "wrong" or there is a bug.
-
RE: need helpposted in Questions & Answers
If you want to set SL at the same place where other SL is, then you need to first get the value of that SL. Similar to how you have this (in loop) option on the other block, but make sure that you use "For each Trade" above and set "Not more than...." to 1 in it's options.
I'm not sure if you are asking about subscriptions. If you are talking about this, then it takes some minutes. Only once in the last days one paypent failed to register in fxDreema, I don't know why, but I can do this manually anyway. Just tell me if there is some problem somewhere, I'm here because of that

-
RE: Subscription Questionposted in Questions & Answers
Yes, there is a payment in PayPal, but for some reason fxDreema did not reacted or PayPal forgot to send a message about it. I don't know, but everything is fine now. Report sooner next time

-
RE: Subscription Questionposted in Questions & Answers
Then something went wrong, this process happens in something line minutes. I will check what I have on 4th
-
RE: Price cyclesposted in Questions & Answers
First, in order to use these blocks properly (check price coordinates), you must place "For each Object" above. Why? Because you can have not only 1, but maaaaanyyyyy objects on the chart. And when you look for price coordinates... from which object?
The second problem is that it's never a good idea to use == when working with prices. Do you know that prices are jumping on every tick in very different way. Now Ask = 1.23456, on the very next moment Ask = 1.23458, but the price was Not 1.23457. If you are looking for a price that is exactly 1.23457, then what happens? Nothing.
-
RE: Need Helpposted in Questions & Answers
"on Trade" is a single event (work place) that reacts to multiple possible events - create, modify, close... The top block(s) under "on Trade" should be one of those purple blocks, to filter the trade that you actually need.
-
RE: Compilation errorsposted in Bug Reports
https://fxdreema.com/shared/RDHu1LKdd
This is the result (that red line): http://prntscr.com/7dmv6jIf you want to use this enum, it's fine to put it into the EA as you did. Then you can also use the same data type for the indicator that is added in fxDreema - not int, but Applied_Extern. Now you have it with int: http://prntscr.com/7dmvvz
-
RE: NEW Feature Suggestionposted in Questions & Answers
Block numbering matters only when you have blocks in parallel. Like when you are driving on a road and suddenly the road splits into 2 or more roads.
And how things will be positioned in the block?

-
RE: Compilation errorsposted in Bug Reports
Just use int values from 0 to 4 for the input called Extremes
-
RE: Help with trailing of my ea [fixed] another questionposted in Questions & Answers
Two blocks are needed here. You can find the setting to trail SL or TP inside. Now I realize that I can add option "Both", but anyway. You can also find options for where to start trailing - "Trailing Start". If there is no initial SL (or TP) it will be created, otherwise it will be treated as existing... the same as when the trailing block moves it itself.
-
RE: need helpposted in Questions & Answers
It looks ok.
To check if some block passes or not, use "Draw Arrow", at least this is what I do in such situations
