@ladydolares No I am talking about the list on the left of the inputs, when you open in MT5 you will get all the required inputs.
Posts made by jstap
-
RE: THE PRICE HISTOGRAM EA----NEED HELLLPPPPposted in Questions & Answers
-
RE: New order Martingale (non-grid)posted in Questions & Answers
@ahmadhov l'andorra is right a shared link is much simpler to work with, in this post, I think you will see what you need.
-
RE: I need help with my divergence based EAposted in Questions & Answers
@ralph1 Add your latest project on here as a shared link and Ill take a look. I will also add this, you have a once per bar block, so you are expecting your conditions to happen at that specific time every time, quite unlikely, if you move that under your conditions then it will only be activated after conditions are true.
-
RE: THE PRICE HISTOGRAM EA----NEED HELLLPPPPposted in Questions & Answers
@ladydolares I can show you how to add to FXDreema, don't know how well will work though as I couldn't get either to work on back test, fractals not even on live chart.
When you load an ex5 indicator as in your picture and then click new for the input you get the place to add the input as in the same as you get in MT5.

The type is the symbols on the left in picture it is listed like this.

If you have a int depicting something like time frame go on to a FXdreema condition block select what is in the input and count down until you get to the relevant place.

In that picture M12 == 8
Do all this the same (including spelling and format) the same as inputs.
Push new for as many buffers as you believe are there, these can be named as you would like.
Once done and updated put all buffers into a comment block as number, if these represent a fixed number then you will see them change as and when required, if they represent something that only shows as a signal (like indicator appear) then it will have a 0 most of the time and then flick to a greater number when this happens.
Hope this helps.
-
RE: Trouble buying only when 16:00 crosses the high of 15:00 only!posted in Questions & Answers
@sulyayub Ok if you still struggle, put the updated project on here and I'll take a look.
-
RE: Trouble buying only when 16:00 crosses the high of 15:00 only!posted in Questions & Answers
@l-andorrà It basically just does an if statement, if bool input (constant or variable) BUY = true then pass, if false don't pass. Is just like using a standard condition block but only having to use one word.
-
RE: Doubt "check how it was closed" usage in trade sequenceposted in Questions & Answers
@maledetu I would use a true/false flag, place check flag before buy/sell, place set flag false below buy/sell, have a condition somewhere with set flag true, whenever you want this tree to buy/sell.
-
RE: How do i set up the blocks to buy or sell after every bull or bear candleposted in Questions & Answers
@ebukaitalian I have never used martingale but it is already in the buy/sell blocks, you may also need a no trade block above, you do for a single trade but not sure about martingale.
The pink blocks need a pink for each trade block above.
-
RE: Doubt "check how it was closed" usage in trade sequenceposted in Questions & Answers
@maledetu You'll see in this picture how to do it, make sure you do it on the on trade tab, you can use any combination you like.

-
RE: IF - THEN - ELSE logicposted in General Discussions
@cesar_defez Thank you for this, as usual the fix is quite simple, so OR = ||. I will quite often use a variable to replace functions, might also work different on MT4 compared to MT5.
-
RE: How do i set up the blocks to buy or sell after every bull or bear candleposted in Questions & Answers
@ebukaitalian There are yellow signal blocks called bull/bear candle, set these on candle 1 how you want, if true as soon as candle 0 opens it will buy/sell.
-
RE: I need help with my divergence based EAposted in Questions & Answers
@ralph1 In this picture you'll see how you can do this in a standard condition block.
link url) -
RE: Once per bar and rolloverposted in Questions & Answers
@johnson-mutisi You need a no trade block, this will stop any blocks beneath it activating once a trade has been opened.
-
RE: Trouble buying only when 16:00 crosses the high of 15:00 only!posted in Questions & Answers
@sulyayub Your welcome, try this link probably because the trees were sharing the no trade block, I also put 2 bool conditions in so, you can turn on/off either in EA inputs.
-
RE: deactivating other robotposted in Questions & Answers
@ali-pahlawan The group in each block add onto magic so if magic is 1000, and group is 5 then the magic for these trades becomes 1005, if magics are same and bot is only permitted 1 trade on symbol that is all you will get.
-
RE: Trouble buying only when 16:00 crosses the high of 15:00 only!posted in Questions & Answers
@sulyayub Your shared link isn't showing, there is a few ways you can do this, if it's a line you can make the ea react on contact but depending on how the line is drawn changes how you would do this. The way I would do is at 15:00 save the price level into a variable, then use a condition with something like at 16:00 current price is above the price in the saved variable, then your buy/sell
-
RE: Increase lot when privious trade hits SLposted in Questions & Answers
@foxeye Most likely, you need to have buy and sell in on chart, this is what makes EA to buy/sell with the increased lot in this link I have put the mt5 version, if you press the ex5 button then you will get the EA to see working on back test, if you press the MQ5 button you will get it in FXDreema to adjust how you want.