@alex81 All is in the link, you can use any combination of buffers to suit your needs.
Posts made by jstap
-
RE: Convergence of multiple conditions in single indicatorposted in Questions & Answers
-
RE: Convergence of multiple conditions in single indicatorposted in Questions & Answers
@alex81 This indicator has 7 buffers, in HERE you can see what I did to check, buffer 0 or 1 is sell arrow, 6 or 7 is buy arrow, with the indicator appear block you can make EA buy/sell, you only need to use 1, something like buffer 1 for sells and buffer 7 for buy, what is in the link should show you enough to create an EA.
-
RE: Convergence of multiple conditions in single indicatorposted in Questions & Answers
@alex81 Check your mt4 object list, this will give you the names you are trying to reference as objects.
-
RE: Stop trailing stop from running at 3 pips profit?posted in Questions & Answers
@biztet Break even will move stop when enough profit reached, sometimes trailing until BE is more desireble encase price reverses before BE.
-
RE: Indications dashboard on chartposted in Questions & Answers
@bagheria Profit is easy, is total positions current or all, If you put a shared link here things can be assessed.

-
RE: How to assign output buffers from custom indicators?posted in Questions & Answers
@bluekangaroo14 This is not a trivial task, the indicator probably doesn't have buffers, may have the data window buffers but these are unlikely to obtain the information you need, if it has you can get this information fron iCustom code, if you look in the terminal object list you will see what information is stored there, you can use this info if relevent but will take a lot of work.
-
RE: Zero divide on restart due to LotStep being changed to zero . .posted in Bug Reports
@mantadiver The problem is likely because you used text value, instead of text(code input) value.

-
RE: how to open multiple orders in my EA?posted in Questions & Answers
@joe_fx Your second tree is true on the same candle, you need a condition to separate where trades are being placed, the ea works in fractions of a second, once 1st trade is placed it places the second because the conditions are true..
You do not need ==true because this is already in the block.
-
RE: Conditional Stop Loss For Accountsposted in Questions & Answers
@talalkhan No because this is the close trees, the trade block only needs to stop a trade from being placed.
-
RE: EA Waites for the next bar to open tradeposted in Questions & Answers
@daniel208forex EA will check conditions every tick if placed on the on tick tab, generally you use the candle number to check if a condition is happening or has happened, if candle close is in your condition then use 1 or higher, this is because as 0 closes it becomes 1.
-
RE: How to code " Stop trading downtrend and start trading uptrend"posted in Questions & Answers
@piong This will show you how to do what I think you want, either way there should be enough for you to sort as required. https://fxdreema.com/shared/eINE4351c
-
RE: How to code " Stop trading downtrend and start trading uptrend"posted in Questions & Answers
@piong Put a shared link here and it can be assessed, The simple way is to place a close buy/sell block above sell/buy, this will make EA close then buy/sell every time there is a cross, this will likely be a loosing strategy without other trading conditions.
-
RE: Text objects not recognizedposted in Bug Reports
@vish Is this object in the MT4 object list, and coloured green? both of these will affect if EA can react to it.
-
RE: Stop trailing stop from running at 3 pips profit?posted in Questions & Answers
@julianrob If you put a shared link then problems can be assessed, in HERE you'll see how to achieve this, not tested but should work.
-
RE: how to show in comments sell pips and buy pips separatelyposted in Questions & Answers
@saeed-2 I have just tested this and it works for buys and sells separately, in HERE you will see what I have done to test.
-
RE: Conditional Stop Loss For Accountsposted in Questions & Answers
@talalkhan Do as in my last post but start from the beginning, hopefully this will fix all problems.
-
RE: how to show in comments sell pips and buy pips separatelyposted in Questions & Answers
@saeed-2 Have you tried placing all buys as a different group number to all sells?