@biztet You'll have to give me more information, what type of loop do you mean?
Posts made by jstap
-
RE: ENUM : DropDown Menu for Stringposted in Questions & Answers
-
RE: ENUM : DropDown Menu for Stringposted in Questions & Answers
@biztet ! If you mean int, this will activate simple MA:

-
RE: EA on MT5 - (M5 timeframe) opening trades against trend (Please Help Fix Ex.5)posted in Questions & Answers
@l-andorrà I assume you meant to send this to @Denk777 : )
-
RE: ENUM : DropDown Menu for Stringposted in Questions & Answers
@biztet You can on MT4, nearly everything in a FX block works using the order as an int starting at 0.
-
RE: ENUM : DropDown Menu for Stringposted in Questions & Answers
@biztet Thinking about it you can likely use a int value, 0 = open price, 1 = current market price (Ask for Buy, Bid for Sell) etc.
-
RE: How to get line/MA slopeposted in Tutorials by Users
@alphaomega Many things aren't that easy, that is though : )
-
RE: Distance From Blockposted in Questions & Answers
@jflyer Put the value as a price fraction, if you put absolute distance hi or lo will be clased as distance away so you could remove a check distance block, you don't need the or block if one was false and the other true, then the false wouldn't pass.
-
RE: How to get line/MA slopeposted in Tutorials by Users
@alphaomega The line doesn't have a name, put one in there and put yes for redraw:

-
RE: How to get line/MA slopeposted in Tutorials by Users
@alphaomega In the name put the name you called the line.
-
RE: 3 Breakevens in same projectposted in Questions & Answers
@trdjb3 Change your pips in profit so each one increases, and add a pips offset that increases.

-
RE: How to get line/MA slopeposted in Tutorials by Users
@alphaomega Fair play, I still create a section and once it works I move on to the next.
-
RE: How to get line/MA slopeposted in Tutorials by Users
@alphaomega You don't need pass blocks when you have a condition, personally I don't connect yellow to top, this makes the block loop until it passes so avoiding the above conditions, every tick it will try to complete the tree, if it can't it waits until the next tick to try again. As for the draw blocks you need to name so when redrawn it knows what to redraw, this needs a condition so it will only redraw once needed, I would have a condition using object on chart, the slope angle, so if sloping up and candle closes above (>) it redraws, if sloping down and candle closes below(>) the line is redrawn, I would switch all off except the line drawing until this is working as needed.
-
RE: USING ATR AND VARIABLESposted in Questions & Answers
@6ixpappi You can do it like this, just hold the value and reset when needed:
-
RE: Extract Last Digit Numberposted in Questions & Answers
@sobrishariff You can do it like this, not necessarily the best way but it works and you could probably tidy it up:
-
RE: EA on MT5 - (M5 timeframe) opening trades against trend (Please Help Fix Ex.5)posted in Questions & Answers
@denk777 This is an example of how you could do buys, there is nothing specific in the blocks.
-
RE: ENUM : DropDown Menu for Stringposted in Questions & Answers
@biztet I do not know how to do this, sorry.