You want to modify the indicator itself to return 0 or to change its returned value from EMPTY_VALUE to 0?
Posts made by fxDreema
-
RE: Empty Valueposted in Questions & Answers
-
RE: Lost pivotposted in Questions & Answers
Is this a custom indicator and can you get the value, the price at which the horizontal line is placed?
-
RE: onTester()posted in Questions & Answers
I never added Tester event obviously. And to be honest, I never tried how this works. But if OnTester() is supposed to just return a value, I can't imagine what "on Tester" button and field with blocks in it will be able to do.
-
RE: Close basket of trades made of several symbols when it is profitableposted in Questions & Answers
So, this block checks the unrealized profit made by certain group of trades. In the settings you specify which trades (Filter). Then the idea is to put "Close trades" after this block with the same "Filter". By the way, if needed in "Group #" you can specify multiple group numbers separated with comma, and this should also work for "Symbol".
-
RE: Buy Sell based on the Volume % (Bull % Bear %)posted in Questions & Answers
You tried to use these indicators?
-
RE: ICHIMOKUposted in Questions & Answers
It should be like this:

But I see what you are talking about. I tested this and initially I got nothing. After some tests I started to see the value and since then it works fine. The thing is that I don't really know why it didn't worked initially. I know that I'm not loading the indicators in the correct way, as they described it in the documentation, which leads to problems sometimes that I don't know how to fix.
-
RE: price is close to support or resistance before tradingposted in Questions & Answers
I don't know if you have a custom indicator or something else, but take a look at that "Adjust" field:

In it you can write something like +10pips, where "pips" is a keyword that fxDreema understands and turns 10 into something like 0.0001. This way you are adding 0.0001 to the value. -
RE: How to set trailing stopposted in Questions & Answers
Take a look at the "Start" parameter: https://fxdreema.com/tutorial/builder/trailing-stop
-
RE: Trade limit on Add to volume blockposted in Questions & Answers
Interesting question, it's a good idea to make it able to get the number of children trades (trades created with "add to volume"). But here is how I did it anyway (I used this example: https://fxdreema.com/demo/mt4-loop-add-to-volume-on-loss


I added extra block who passes when the distance from the parent trade is more than 30 pips... which is when we don't want to add to the volume anymore, so I used its yellow output.
-
RE: Trades closed at once with rising volumenposted in Questions & Answers
I don't understand what you can't do here - open the trades or close them. But I can imagine that you opened them and you want to close them. I imagine something like this

-
RE: Custom Code from MQL4 to MQL5posted in Questions & Answers
iCustom works in a very different way in MQL5. You can compare the definition of this function in the documentation of MQL4 and MQL5. But it is pain in the butt to make iCustom to work in MQL5 in a similar was as in MQL4.
-
RE: problem with out buffers (pipfinte trend pro) any help ?posted in Questions & Answers
I see. The thing is that you see the description of each parameter, not its actual name. In the code it probably looks like this:
input double TargetFactor = 2.0; // Target FactorThe name of the variable (TargetFactor) looks ugly, so they decided to allow people to decribe the parameter better in a comment after the definition (// Target Factor).
But in fxDreema you should use the ugly names, because they appear in the output code as variable names.
-
RE: Closing all trades in one pair when target is met (equality?) when trading with multiple pairsposted in Questions & Answers
Ok, you have multiple pairs, many trades, only 1 Equity and 1 Balance value. You tried to compare different values and you don't like the result. This makes me think that the values you compared are not the right ones. Can you describe what value do you want to get?
That Bucket block is useless there. This block would make a list of trades, that's all. Then in another block you can get the results. See this:

In block 5 here only a list of Buy trades is created. Then in block 8 the count of these trades is calculated... and also other values (https://fxdreema.com/demo/mt4-bucket-trades)
The idea of those blocks is to be able to select group of trades, calculate some value out of them and use that value somewhere. -
RE: EA calculates wrong results with JPY pairs chartsposted in Questions & Answers
I honestly don't want to inspect this project, as it is pretty big and I'm always lazy :)) But I will tell you what I would do. I would start stripping blocks until I get the minimum of blocks and variables to produce only 1 wrong value. Then is't much easier to detect the actual problem.
I don't understand why do you have the same blocks in Init and Tick
-
RE: MT4 to Telegram groupposted in Questions & Answers
This is what found: https://core.telegram.org/bots/api From what I understand, some bot is created and then HTTP requests are sent to it
-
RE: HOW TO FIX THIS ERROR ? FOUND IN MONEY MANAGEMENT / MARTINGALE , PAROLI OPTIONposted in Questions & Answers
I didn't updated martingale or anything else, if something was fixed, I'm not the reason for that today

Different pairs... some indicator maybe?
-
RE: Trailing take profit after take profit is hitposted in Questions & Answers
So, there is a block Loop (pass n times) somewhere that can activate its output multiple times. Pretty much what "for" does, but the "i" variable lives only inside the block. Well, variables can be created and manipulate outside the blocks, so that iteration variable can be added.
So your TP that you say that it is hit is some imaginary level where something should happen, not the real TP line?
