Well, I almost abandoned these blocks and I think I will remove them. These blocks are like indicators, but they are not indicators, and it's better to use some indicators instead 
Posts made by fxDreema
-
RE: Feature Requestposted in Questions & Answers
-
RE: Custom Block Not Workingposted in Questions & Answers
You can always define local variables in the main code, they will appear in the output code of the block in it's own function. But these will not appear as input parameters in fxDreema

-
RE: Custom Block Not Workingposted in Questions & Answers
This is when you have predefined parameters (the box below), in this case you only need to drag them from the lower box. Well, you probably don't have and to be honest, I don't recommend you to make some. I have many of these for the system blocks, but I found that I prefer to not use them anymore. This is how it looks for me: http://prntscr.com/4y5epf
-
RE: Yellow Output On Custom Blocksposted in Questions & Answers
Yes, and for gray output ~error~ should work. But there are bugs sometimes

-
RE: custom indicator in mt5 not visibleposted in Questions & Answers
I'm showing you screenshot of me using the indicator, so yes, I used it and it worked. I almost always make my simple project to test the things first, in this case I used
"Indicator tester". I used the same indicator settings that I manually set in your account (the web version of fxDreema, go to My Indicators), so they should work. Just make sure that you are using the same settings. Otherwise it's probably something else, and in this case I can suggest TeamViewer
-
RE: Compilation errors after the latest updateposted in Bug Reports
Sorry for the delay, I was busy these days and I reinstalled my laptop with the still weird Windows 10. I will check this.
-
RE: Need a help Buy and Sellposted in Questions & Answers
I think you have to go here https://fxdreema.com/examples and take a look at the very first example

-
RE: Compilation errors after the latest updateposted in Bug Reports
Now I have no idea
Which block cause this? -
RE: Warning: array key existsposted in Bug Reports
This is what I did: http://prntscr.com/4wryd7
This is maybe the only instrument that works, and I don't even know what "ZB 12-14" is
But I found that there is some Wizard to create strategies and I created something... I don't know what, but look, I think it is profitable 
-
RE: how can do multi timeframe?posted in Questions & Answers
I mean that the last picture shows something that is OK
-
RE: how can do multi timeframe?posted in Questions & Answers
The last picture counts!
An indicator is also a robot, which can do almost the same things as the EA, but can't trade. Indicators exists to make calculations and tell you when to trade, while EAs are supposed to contact with indicators and trade. Why don't you use this indicator? I don't know how optimized it is, but if it works well it probably can be connected with the EA to give you buy and sell signals.
-
RE: Warning: array key existsposted in Bug Reports
Haha, this is how the map of visitors looks like for fxdreema.com for the last month: http://prntscr.com/4wogml Russia is not even in the top 10! Russia is #34 with only 44 sessions compared to 743 from US
And no, I'm not advertising it, so this is all organic traffic.I wish if there is a platform that can make 100% accurate backtests, we know how bad MT4 is, it is only fine with giant stops. With Ninjatrader I don't know where to start. You tried another platforms?
-
RE: Warning: array key existsposted in Bug Reports
Well, one little warning message looks fine, but when the whole screen is covered with it, this is another story.
Aah, I downloaded NinjaTrader to check it out and... I'm really disappointed. I tried this and that, and I was not able even to open some chart correctly. I forgot that I was trying to run some robot on this platform. And to be honest, it looks ugly, which means the programmer does not care very much. More than that - this program is not free and now I don't know why and who buys it. So... let's try with another product, because this one sucks

-
RE: Need a help Buy and Sellposted in Questions & Answers
Connect block 2 after the otange output of block 4, because the yellow output means the opposite of the orange. Or from the yellow of block 1. Or remove block 2 and connect block 3 to the yellow of block 1. Again, the yellow output is (in most cases) the opposite situation of the orange output.
Also now I can see that Buy now is connected with itself, also remobe that loop connection, it is visible around it. -
RE: how can do multi timeframe?posted in Questions & Answers
I don't like the picture, it looks like something simple transformed into something complex. Again, just connect few blocks one after another. If the one at the top is true, the next one is executed, and if this one is true - the next one... and so on. Specific timeframe can be selected everywhere in blocks. And no, you will not see all indicators on the same chart, you will need to move from one timeframe to another, but they will work anyway.
-
RE: how can do multi timeframe?posted in Questions & Answers
You don't need the block I mentioned, only few "Condition" blocks, or maybe some blocks from "Indicators" category... it depends. Forget about the "AND" block, just connect few blocks one after another.
Yes, the indicator is obviously going down if the previous point is higher than the current point. You can compare 2 indicator values easily, and for something more check blocks "Indicator fall" and "Indicator rise".
Maybe you need to check the examples here: https://fxdreema.com/examples
-
RE: how can do multi timeframe?posted in Questions & Answers
I don't know what you are trying to do exactly, but here are some things:
- you can get information from another timeframe in the same EA. For example you can get indicators data or candles data.
- the Tester in MT4 is limited to Daily, so if you try to get something from Weekly or Monthly, it will not work
- if you are trying to get information from certain timeframe, make sure that candles exists in this time period
- if you don't set specific timeframe (in fxDreema), then the current one is used
- There is a block [Set "Current Timeframe" for next blocks] in case you want to repeat a group of blocks few times, each time with different timeframe
- Pass is not needed when the next block is already connected to another one
The (in loop) category is something else, not what you are thinking. To get the current market name, go to "Market Properties -> Symbol (market name"... maybe I should rename that, but anyway. Also, with a pure MQL4 function, the market name can be get with Symbol()
