Is your prpject for MT4 or MT5?
Posts made by l'andorrà
-
RE: "How to Implement Partial Close at +20 Pips and Trailing Stop in FXDreema?"posted in Questions & Answers
-
RE: how to get candle time and priceposted in Questions & Answers
In that case you will need some custom code to create those arrays. Sadly, fxDreema is nit designed to create arrays like the one you need, sorry.
-
RE: Import Custom indicator - defaults change . . .posted in Bug Reports
The easiest thing is checking if that happened in your custom indicator. If it did, then simply correct the values manually once on your project.
-
RE: How To Double The Lot Size Until A Pos. With Profitposted in Questions & Answers
@allstarengin Then you need something like this:

That variable will have to be used on your 'buy/sell now' blocks. Another similar structure for profits willhave to be created to move the value of the lot size to its initial value.
-
RE: HOW TO CHEK THE DFFERENE BETWEEN TOTAL OPEN PROFIT BUY AND DIFFERENT OPEN PROFIT LOSS?posted in Questions & Answers
@bacharchoura1 You can duplicate this structure, one for buys and another one for sells:
https://fxdreema.com/shared/bKbTjhrse
My example is suming up pips, but you can use money instead.
-
RE: How to open new order at the same price of the closed tradeposted in Questions & Answers
Can't you see the images above?
-
RE: martingale. Splitting the lot into several transactionsposted in Questions & Answers
@khansari How is the number of trades per stage determined?
-
RE: How to determine the TP of several open positions with a certain profit?posted in Questions & Answers
What do you exactly mean? The combined price level of all open trades right now for a specific profit in money maybe?
-
RE: how to get candle time and priceposted in Questions & Answers
Correct, you will need 2 different variables for both. One variable for the low price and another one for the time when it happened.
-
RE: how to get candle time and priceposted in Questions & Answers
You can store the value of that low on a variable, but I'm not sure what you exactly mean by 'time'. What time do you mean?
-
RE: swap fee voidingposted in Questions & Answers
@M-Samy You are showing the pending order block. Do you mean closing open trades instead? In that case you can use this:

-
RE: Hi everyone! Need your help on this candle patternposted in Questions & Answers
This is the third time you asked for the exact same question. Please don't spam the forums.
-
RE: Hi everyone! Need your help on these candle patternsposted in Questions & Answers
This is the second time you asked for the exact same question. Please don't duplicate questions.
-
RE: Candle Patterns logicposted in Questions & Answers
What does '1-5 pattern' exactly mean? Are 5 candles involved in the calculation maybe?
-
RE: Open trade and TP by objects (trend line )posted in Questions & Answers
@smille99 Sorry, I forgot you cannot select candle ID for objects directly. You can search for the closest arrow to the present candle by limiting the number of objects to 1 like this:

-
RE: Finding objects on chartposted in Questions & Answers
Well, that means the 'for each object ' block can find it. That's half of the solution. The other half is knowing when the arrow is drawn on the chart. I see you are using a 'once per bar' block. That measn the search for the arrow will only happen at the open of each new candle. Are you sure the arrow will be there at that moment and will not be changed later?
-
RE: I want a marginal grid EA for MT5 with buy and sell stop and virtual trailing step stop and SL and and andposted in General Discussions
That's an ambitious project to begin with. There is no specific thread on the forums showing exactly what you need. Different aspects can be found on separate threads, but what is mot important is you understanding how the platform works. Are you familiar with fxDreema?
-
RE: Open trade and TP by objects (trend line )posted in Questions & Answers
So essentially the problem is that you want the bot to search for those objects AFTER it is running on the chart for the first time, right? What you can do is asking for that object to be in the current candle, ie, candle ID 0. That way, as soon as it appears, it will be found.
-
RE: Automatic opened positions in "For each position" step - not availableposted in Questions & Answers
The 'group' option is the one searching for automated open trades only.