@ontrade Honestñy, I never used the Fibo drawing block in fxDReema, so I have no idea if it works that or any other way. Have you tested it? What visual results do you get?
Posts made by l'andorrà
-
RE: VOLUME VS CANDLE identifyposted in Questions & Answers
-
RE: Close with money profitposted in Questions & Answers
@jsauter86 Do you mean closing ALL open trades when you get that profit? This is because you selected just one trade in the 'For each trade' block 176.
-
RE: work in one per tickposted in Questions & Answers
@khalids222 Ok. I see. In that case I'm afraid I cannot offer you ans answer. Maybe roar could, sorry.

-
RE: Awesome Oscillatorposted in Questions & Answers
@jay_c There is no colour buffer in the AO indicator offered by default in fxDreema. This is why I asked that. Do you have any custom AO indicator showing those colour buffers? Then yes, it would be possible.
-
RE: Closing Trade After Opening a New Trade?posted in Questions & Answers
@yoloyacht Do you mean closing the trade at the following candle after opening it no matter it is gaining or losing?
-
RE: Close Positionsposted in Questions & Answers
@ramimoujaes Those errors are not my fault. You need to create 2 variables. You can call them 'counter_buys' and 'counter_sells', for example. Here you will learn how to create them:
https://fxdreema.com/instructions/builder/constants-and-variables
Then you insert 'counter_buys' in block 7 (in the same place where you typed that name) and 'counter_sells' in block 8. Same with blocks 17 and 18 on the 'on trade' tab.
Finally you duplicate the tree structure headed by block 9. That structure is for buys only. Now you need to duplicate it for sells. Obviously you need to modify the content of blocks 10, 11 and 12 for sells. Try it and let me know.
-
RE: Close Positionsposted in Questions & Answers
@ramimoujaes You can use the equivalen blocks for MT5 :). My explanation:
a) Blocks 1 and 6 are those supposed to open buys. You need to add a 'Modify Variables' block at the bottom of it to count the number of candles after the one opening the trade.
b) All blocks headed by block ID 2 are those counting eavery new candle after the first one. The variable adds +1 every time a new bar is open. Then it is compared to check if there is profit and if so, closeing immediately the trade. If not, a new candle is counted.
c) Both blocks on the 'on trade' tab are used to reinitialize the variable every time the trade is closed.
d) You need to replicated this same structure for the sells.
-
RE: Help to write an EA in FxDreemaposted in Questions & Answers
@dcampbell Here you have a first version.
https://fxdreema.com/shared/6NjjoBIfc
I created a few Constants (input parameters) for you to choose all those settings. For the EA to wrk at midnight EST you need to run it on a broker using that same time schedule. In this version both buy and sell are hols no matter which one is hit by price first but thatcan be changed, of course.
-
RE: Rule Sell based Fibonnacci and candleposted in Questions & Answers
@ontrade Good for you! Congrats.

-
RE: check profitposted in Questions & Answers
@osamaababneh In that case you will need a variable in whch you should add all open trades profits. That variable can then be compared to the total sum you are looking for.
Something like this:
-
RE: Closing Trade After Opening a New Trade?posted in Questions & Answers
@yoloyacht It is not possible to close a trade at the end of a candle. Candles are a visual artifact for us human trades. MT4 doesn't know when a tick is or will be the last one of a candle. The only way to confirm a candle is closed is waiting for the next candle's open.
-
RE: How to Calculate Pip Value for Different Digits Pairposted in Questions & Answers
@aeivan This is the way to confirm if the chart is a 3 digits symbol.

-
RE: Awesome Oscillatorposted in Questions & Answers
@jay_c I guess you are talking about a custom indicator, not the one offered by default in fxDreema. Right? If so it will depend if that indicator's buffers are correctly identified by fxDreema. Did you try it?
-
RE: OnTrade Tab function is unstableposted in Bug Reports
@floridabrazil Honestly I don't know. Maybe there is one, but I don't know it. Anyone else has an idea about it?
-
RE: FRACTALS DEFINITIONposted in Questions & Answers
@mmaarits Then you need to store all those values into three different variables. The you can compare those values exactly as you need.
-
RE: WE NEED A " NO OBJECT NEARBY " BLOCKposted in Questions & Answers
@ralph More information would be appreciated. Can you please detail what you need exactly?
-
RE: Modify pending order after condition met onceposted in Questions & Answers
@darrow You don't need any flag.
Yes, the crossing is the initial point for your EA to consider if ALL OTHER conditions are true. So you just need to know if both MA are in the correct position. If you do that you can be sure that there was a crossing sometime before. And that is all you need. Look at it this way:- Was there a crossing in the past? Yes.
- Are both MA in the correct position? Yes
- Are high/low levels of candle ID 1 in the correct position compared to candle ID 0? Yes
- Launch pending order.
Easy, isn't it?

-
RE: reacting on lines ( objects )posted in Questions & Answers
@ralph Can you please share your project?