Good! 
Posts made by l'andorrà
-
RE: Lots in Forexposted in Questions & Answers
Two quick questions.
- That pass block is completely unnecessary. You can remove it.
- Why is block ID 4 disconnected? Do you know that single blocks not connected to any other block are not executed. I guess this is the problem.
-
RE: Help pleaseposted in General Discussions
I don't understand the logic behind that. Why do you want to open a buy/sell 5 pips below the current trade?
-
RE: RSI condition about Valueposted in Questions & Answers
You need to create two variables for both values and then store them this way:

Then you can use as many condition blocks as required to filter your requirements.
-
RE: pls help,...break even....trailing stopposted in Questions & Answers
That will not work. Imagine you open a trade and the fisrt pip is in profit. Your broker will not allow you to put a SL so close to the current price. You will need a minimum distance for it.
-
RE: Expert advisor start when i open tradeposted in Questions & Answers
Ok. The first thing you will need is to identify the name of the objects (your lines) and then use this setting (for a buy):

In this example you need to insert the name of your lines in the place of 'my-object-name.
That is how you will identify when one of the lines is crossed. This block needs to be positiones on the 'on Tick' tab.Then you will need these blocks on the 'on Trade' tab (for buys):

That will delete all lines on the chart. You will have to duplicate both trees for sells.
-
RE: Hidden/Stealth Stop lossposted in Questions & Answers
@vdjmunga said in Hidden/Stealth Stop loss:
guys are you still using fx dreema mine dont have such advise please
What's your exact problem?
-
RE: robot en varios gráficos ala vezposted in Questions & Answers
Claro, eso que dices lo complica todo, pero no acabo de entender por qué quieres hacer eso. ¿Puedo preguntar por qué quieres operar con cuatro charts de EURUSD, cda uno con su copia exacta del mismo EA? Sería mucho más fácil operar con un único chart pero abrir 4 operaciones. No acabo de entender lo que necesitas, lo siento.

-
RE: Lots in Forexposted in Questions & Answers
Can you please share your project? We can take a look on it.
-
RE: Manual Trailing stop lossposted in Questions & Answers
Wow. That makes it more complicated. Are all trades open on the same chart? I can find an inefficient solution but that would work for one single trade per chart.
-
RE: Magic number filterposted in Questions & Answers
The you need this other tree (separatd from the previous one):

-
RE: Nothing that I'm developing worksposted in Bug Reports
@roar said in Nothing that I'm developing works:
I use mt5 and everything works fine.
Don't get me wrong roar but, really? Is every you have made with MT5 working on fxDreema?
-
RE: Magic number filterposted in Questions & Answers
You can catch every trade's magic number this way:

Then you can use that variable to filter it as you wish with a condition block.
-
RE: In case of a single profitable transaction, I close on the day.posted in Questions & Answers
Ok. This is one possible way. Maybe not the most efficient one but I guess it will work. Firstly you change your history account settings to 'one day'. That way that tab will only show all trades closed today every day.
Thenyou will need the block called 'For each closed trade' on the 'On Tick' tab. An below it you can connect several other blocks matching all those contidions. For example;

You can do that for case 1 in my previous post. That 'No_more_trade' variable should be put in a condition block on top of your trade launcher and then reset at the end of the day.
For cases 2a and 2b you will need some additional condition blocks but the logic is exactly the same.
-
RE: Expert advisor start when i open tradeposted in Questions & Answers
So if I understand it correctly, you will draw 2 lines on the chart, one for buy and another one for a sell. When price hits one of them a trade is immediately open and then the second line is immediately removed. Correct?
-
RE: Loopposted in Questions & Answers
Here you can find some useful ideas for your question:
https://fxdreema.com/forum/topic/6796/make-ea-close-all-pending-orders-after-tp-triggered/4
https://fxdreema.com/forum/topic/4760/delete-pending-order-when-reached-tp/2
-
RE: Manual Trailing stop lossposted in Questions & Answers
I have an idea but I would like you to confirm if there will be more than one open trade at he same time on each chart.
-
RE: pls help,...break even....trailing stopposted in Questions & Answers
Not sure I fully understand you. Do you mean an immediate new trade each time price hits previous' TP/SL? No trailing stop is needed in that case. Can you please confirm?
-
RE: robot en varios gráficos ala vezposted in Questions & Answers
Sí que puedes. Basta cion poner un EA en cada chart por separado. Lo que no acabo d entender es si quieres poner exactamente el mismo EA en el mismo chart pero e forma repetida. ¿Es eso a lo que te refieres?
-
RE: Reading Values off Chartsposted in Questions & Answers
I recommend you to take a look at the 'For each object' block (orange colour).