@ramisignals I'm afraid bitcoin payments are confirmed very late (up to 5 days). Please contact the admin via the support page (https://fxdreema.com/contact) to let him know.
Posts made by l'andorrà
-
RE: helloI paid 23 dolar in your bitcoin address please activate my accountposted in General Discussions
-
RE: Modify pending order after condition met onceposted in Questions & Answers
@darrow You need to reinitialize that variable to 0 again when a reverse crossing happens. And you also need to connect block 27 between blocks 21 and 28. You want both conditions to be true at the same time.
-
RE: Question about how Active trades are managedposted in Questions & Answers
@cdwilder1 You can soecify within the EA blocks if you want the trailing stop to be applicable to all trades from all symbols or just the one teh EA is active on now.
-
RE: How can I check if TP has changed?posted in Questions & Answers
@learningfx You can create a boolean variable moving from false to true once the SL has been successfully modifed. That you can chek that variable status for any other later checking.
-
RE: On Timer: What is the difference?posted in Questions & Answers
@coolazice I never use that block because I'm not a programmer, sadly.
I'm afraid you need a real one in this case. -
RE: Highs and lowsposted in Questions & Answers
@len-1 Did you try using the block settings I suggested?
-
RE: Not to close more than two dealsposted in Questions & Answers
@khalids222 I'm sorry but I don't fully uderstand what you mean.
-
RE: Not to close more than two dealsposted in Questions & Answers
@khalids222 Ok., but ANY 2 winning trades or 2 specific winning trades?
-
RE: Number superpositionposted in Questions & Answers
@roar This is what I thought initially and this is why I included a 'delete text' block. I will contact the admin to let him know. Thank you.
-
RE: I have no idea how to start.posted in Questions & Answers
@miroslaw Perfect! This is exactly the way to do it. What do you need the EA to do now?
-
RE: closed trade in Journal/Log Fileposted in Questions & Answers
@siggi12345 Good for you! Congrats.

-
RE: How to draw a block automatically on the chart?posted in General Discussions
@zedeai2 Just change 'close' price in the two first options by 'high' and by 'low' in the other two. Then try again.
-
RE: Not to close more than two dealsposted in Questions & Answers
@khalids222 I guess you mean closing some specific trades or any 2 trades randomly?
-
RE: EA SUCURITYposted in Questions & Answers
@agitins Rami is right. fxDreema cannot created protected EAs. You will need extra coding to do that.
-
RE: partial closeposted in Questions & Answers
@denis-wilfred It should not be difficult, but you will need to provide some more data about what conditions are required for a trade to be partially closed.
-
RE: closed trade in Journal/Log Fileposted in Questions & Answers
@siggi12345 You are duplicating loops for buys and sells. Considering that there will be just one trade per day, use one loop ('For each closed trade') block instead both buys and sells. Then use the other blocks identifying if it was a gain or a loss.
-
RE: Modify pending order after condition met onceposted in Questions & Answers
@darrow Use a boolean variable. When the crossing is confirmed, move that variable from false to true. Then you can use that as a condition block previous to your other conditions. As far as that crossing condition is true, no matter how many new candles are formed, it will still be true for all the other ones.
Then don't forget to change it to false again when a reverse crossing happens.