@stefnofera93 Yes, simply use three 'buy/sell now' blocks instead of one below your conditions.
Posts made by l'andorrà
-
RE: Multiple ordersposted in Questions & Answers
-
RE: print messageposted in Questions & Answers
@qais-3 Is that block on the 'on tick' tab? If so that message will be activates ebery time a new tick arrives to your MT4.
-
RE: How to avoid sudden open position of ea?posted in Questions & Answers
@zedeai2 I cannot give you a more accurate answer without seeing the whole project. I find it very weird because I see several 'No trade' blocks in your screenshot that should stop opening more trades. If that is happening means that they are not properly positioned in the project.
All blocks on the 'on tick' tab will be executed EVERY TIME a new tick arrives to your platform. On the other hand, all blocks on the 'on trade' tab will be executed ONLY when something happens to a trade (it is open, closed or modified, basically) and NOT every single time a tick is in.
-
RE: "Set Current Market" block vs running pairs separately not adding upposted in Questions & Answers
@supersako Those different profits are condtioned by your balance currency. If it is in US dollars, all calculations will be done in US dollars for the backtesting day exchange rate. Doing it with different instruments means different exchange rates will be considered depending on the US dollar exchange rate that day with the currency of the symbol. This is why thos ratios are different. They will always be.
-
RE: what does "SLIP" and "pip step" means in EAposted in Questions & Answers
@saeed-2 Can ypu please upload a screenshot with those elements? I'm not sure where they can be found.
-
RE: trailing stopposted in Questions & Answers
@michele-vitulli efectivamente, los tres aspectos que define son correctos.
-
RE: pendin orderposted in Questions & Answers
@giusepatane I'm afraid I don't fully understand. How many open trades is the EA supposed to hols at the same time? Is there any maximum?
-
RE: Closing of operations with profits.posted in Questions & Answers
@xyon126 You need to check that condition trade by trade. To do that you need a 'For each Trade' block below block 58 and Remove block 27.
-
RE: Adding custom Currency Strength Meter indicatorposted in Questions & Answers
@sauce Wow. Yeah, that is a hugh amount opf calculations. A custom indicator identifying weakness/strength should do all that work. Otherwise your EA can be a mosnter in terms of blocks necessary to be implemented.
-
RE: Modify variable according to Time Frameposted in Questions & Answers
@xyon126 Ok. Please tell me a bit more how it is supposed to work. You are in a 5M chart and that variable should be automatically 200. Then you change time frame to 1H and then immediately the value whoud be 600, for example. Is that what you want?
-
RE: Stop loss under x period lowposted in Questions & Answers
@costad1991 Do you mean maybe subtracting as many pips below the low price as the ATR value right now?
-
RE: Modify variable according to Time Frameposted in Questions & Answers
@xyon126 I can try to think something with conventional blocks but not with custom code. Would that work for you?
-
RE: Why not close the equations؟posted in Questions & Answers
@khalids222 I guess the problem is block 10. You are dividing a decimal number by a bigger integer number. That creates a much smaller number I'm not sure fxDreema can fully understand. Di you check what valye rangle can achieve variable R2?
-
RE: How to open reversal trade with lot size 6x last loosing tradeposted in Questions & Answers
@didymario7 You'd better try this on the 'on trade tab:
https://fxdreema.com/shared/hgwA83YFd
I created a variable to catch the original closed trade lot size and then use it into the new reversal trade (a sell in my example). You shouls duplicate this structure for buys.
BTW. Your trailing stop blocks are wrongly connected in their current position. You should use 1 of them and remove the other. Then connect that one into a separate block tree.
-
RE: Trade amount of moneyposted in Questions & Answers
@pedrog The the only information you can work on is the lot size. You can create a constant in which you can specify the lot size of all trades.
-
RE: Pending order autoposted in Questions & Answers
@tuhand I'm afraid we are not understanding each other. What I mean is if you have an initial fxDreema EA created to share in this forum that can be used as a base to work on it.
-
RE: Alert on Chart objectsposted in Questions & Answers
@javed77 This is an example for price crossing above a MA:

-
RE: How to avoid sudden open position of ea?posted in Questions & Answers
@zedeai2 Firstly, you can remove that 'AND' block. it's doing nothing there but adding more useless code lines. My question is, when is supposed to open a trade your EA OTHR than when conditions are met? Are you maybe saying that those conditions are ALWAYS met every time you run teh EA on the chart no matter what?