@YASI-AZ Are you using the exact same indicator code for both MT4 and MT5? Because they need to be different code files.
Posts made by l'andorrà
-
RE: using custom indicators in MT5posted in Questions & Answers
-
RE: Dealing with Broker-Specific Symbol Variations, How?posted in Questions & Answers
@mark692 said in Dealing with Broker-Specific Symbol Variations, How?:
AUDNZD.s
You can do it here:

You'll have to delete all values there by default and then type each new symbol manually. It's annoying, I know.
-
RE: Difference between trailing stops and trailing steps and how can I add it to my bots @jstapposted in Questions & Answers
Trailing stop is the maximum distance there will always be betwee the current price and the SL. In no case that distance will be higher. It can only be shorter. Trailing step is the diatance the SL will be moved on the chart every time price is at the exact trailing stop distance from SL. You can create 2 constants to select both values.
-
RE: 'Once per minutes' blockposted in Questions & Answers
The 'once per bar' block should do it correctly if more trades are open on that same bar it means other parts of the EA are conflicting it. Can you please share the link to the project?
-
RE: Opening buy and sell limit orders at the quarter of the body of the ID1 candle helpsposted in Questions & Answers
@Valerio1979 What do you exactly mean by '25% of the ID1 candle? Do you mean 25% of its body size maybe? And if so, from the open or the close price?
-
RE: cancel previous pending order if there is a new orderposted in Questions & Answers
Just use a blue 'delete pending orders' block immediately above the 'buy/sell pending order' block.
-
RE: back test and live differenceposted in Questions & Answers
@nasserminaei Spread is manually selected on MT4. That means it is not the real one. Only MT5 backtest include real spread.
-
RE: Indicators not showing on MT4posted in Questions & Answers
@Obis You need to confirm this options is selected:

-
RE: Lot sizes based on RSI levels???posted in Questions & Answers
You need to use three separate 'buy now' blocks, one for each lot size. Then, on top of each block you need to use the condition blocks specifying those RSI limits.
-
RE: calculate and display total lotposted in Questions & Answers
@nadalmir You need to use a variable totalling the sum of all open trades right now like this:
-
RE: end up and finish back test areaposted in Questions & Answers
Interesting question. AFAIK it is not possible, but honestly I'm not sure. I hope someone else can provide some more info about it.
-
RE: News Tradingposted in Questions & Answers
Then you need some custom code to add to your project, You can take a look at this thread:
-
RE: Half Trendposted in Questions & Answers
I'm afraid fxDreema cannot identify the buffers of this indicator. The only option is trying to emulate them as explained in this tutorial:
https://fxdreema.com/forum/topic/4208/tutorial-06-my-indicators-in-fxdreema
There is no guarantee it will work. If it doesn't, I'm afraid you will have to find a different indicator.
-
RE: How to set the tracking stop loss?posted in Questions & Answers
@haohao There are different ways to do it. This is one of them:

-
RE: pips distance multiplierposted in Questions & Answers
Do you mean the grid will have different distances in time? There will be one distance at the beginning and a different one later? You will need two block trees with those different distances after applying that 1.5 factor or any other you need.