@l-andorrà yes, it does show properly when using it in mt4
Posts made by xlestergg
-
RE: Enum error : Cannot add custom indicatorposted in Questions & Answers
-
Enum error : Cannot add custom indicatorposted in Questions & Answers
I tried to add this custom indicator in but it keeps throw error about the enum.
Does anyone know what I can change in the mq4 file to make it work?
I have attached the indicator as well.
-
RE: Variable versioning across different pairsposted in Questions & Answers
@jstap I see, so the values are shared after all, so from what you said I need one variable for every single pair I trade, such as one for EURUSD, one for AUZNZD and so on. Does seem a bit repetitive if I trade 20+ pairs
-
RE: Variable versioning across different pairsposted in Questions & Answers
@l-andorrà yes, as I want to do this condition checking on every pair. I'm want a re-entry limit (specific to each currency pair) on every pair which I trade
-
RE: Variable versioning across different pairsposted in Questions & Answers
@jstap https://fxdreema.com/shared/APgSjaSQd here's a better example. I want to limit my re-entry trades for each pair. For example if EURUSD has re-entered 3 times, and I do not want it to re-enter.
But for another pair, AUDNZD if it uses the same value as EURUSD (which is currently 3) it will not re-enter.
So what I want to make sure is, does AUDNZD sees 3 or does it see 0 (assuming it's default value has not changed) ?
In my case, I would want it to see 0, as AUDNZD has not re-entered any trades.
-
RE: Variable versioning across different pairsposted in Questions & Answers
@jstap https://fxdreema.com/shared/LqHkA8Djc, not too sure what you looking for in the link, but lets say for example EURUSD passed the condition and went in a trade, and the variable would be set as true.
If the variable wasnt changed by any other things, what would another pair, AUDNZD see the variable "a" as? Does it share the variable and see it as true? Or does it have it's own version which is false as it has not entered any trades?
-
Variable versioning across different pairsposted in Questions & Answers
If I have a variable, A and has a started value of 0.
In Pair A, the number has been updated to 5.
In pair B, would it see the number 5 too or will be have 0?
-
RE: Delaying trade executionposted in Questions & Answers
@l-andorrà oh no, this is just an example so I did not set the conditions. But I do have them set up properly, all other blocks are there otherwise to cause the "open and close on the same tick"
-
RE: Delaying trade executionposted in Questions & Answers
@l-andorrà https://fxdreema.com/shared/m0s219PVd this is a sample of what I'm having
-
Delaying trade executionposted in Questions & Answers
Hi there,
I somehow have created a condition where my "re-entry" logic occurs on the same tick as my "exit trades" logic, causing some trades to be closed immediately when opened.

I have tried both delay(5 seconds) and skip tick for 1 minute, and they didnt seem to do the job.
-
Crossed in the past X candlesposted in Questions & Answers
For me to enter a trade, I need two of my indicators to cross at the same time, lets say previously closed candle, ID 1.
This is kind of strict, so I would want to allow some breathing room for like if Indi 1 crossed a candle earlier compared to Indi 2.

This is quite possible to do with some candle ID 1 or 2 blocks.
But what if I want other ranges such as 2 or 3 or more candles? It is not feasible to arrange the logic by block.
What I want to achieve is.. if indi 1 crossed in the past X candles, lets say 4 candles.. and my second indi crossed in the previous candle, I would enter the trade.
-
RE: Condition for "when trade closed is a losing trade"posted in Questions & Answers
@jstap thanks, I got what you mean
For anyone wondering how to do the same, it would be checking for profit < 0 after a trade close.

-
Condition for "when trade closed is a losing trade"posted in Questions & Answers
Hi,
On the "on trade" tab, I would want when a trade closed is in a loss, I would want to draw a line so it is easier to spot. The trade closed block only can detect if it's a "stop loss" but even trades closed by stop loss can be a positive trade.
Is this possible to achieve?