By trees I mean a set of blocks all linked, you can have as many trees as you want. Trees will do separate/linked work but without being connected to another
Posts made by jstap
-
RE: Calculate equity drawdown percentage and open opposite direction tradeposted in Questions & Answers
-
RE: What is the difference between "Price Level" and "Price Fraction" ?.posted in Questions & Answers
Level is the numbers on the right of your screen, fraction is a distance (top to bottom)
-
RE: Calculate equity drawdown percentage and open opposite direction tradeposted in Questions & Answers
Not with a no trade block, unless magic numbers are different, in the same tree you cannot have 2 conflicting drawdown blocks, if true pass, but 2 will never be true at the same time.
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
Your check distance will never be greater ask to ask 1 tick difference, choose a distance more likely to be correct, unless my understanding is wrong, but ticks can happen multiple times in a second.
-
RE: Calculate equity drawdown percentage and open opposite direction tradeposted in Questions & Answers
You have conflicting issues in 1 tree, equity will never = your drawdown result if no trades are running. to disable auto trading is good, but get this working before worrying about this
-
RE: how to trade depending on object on chartposted in Questions & Answers
The lines have a value and you have the names, put the value into a comment using object on chart then you will know how to work with these lines

-
RE: How to remove the last digit if the "digit count > 5 "posted in Questions & Answers
I have done this many times, you just need to add the 2 together and divide by 2
-
RE: how to trade depending on object on chartposted in Questions & Answers
If you double click one of those objects do you get the price value?
-
RE: How to remove the last digit if the "digit count > 5 "posted in Questions & Answers
You do not need to normalise price values, and if you want the middle value it is high+low/2 or low+high/2 makes no diffrance if adding
-
RE: How to remove the last digit if the "digit count > 5 "posted in Questions & Answers
Is this your lot size, or a price value?
-
RE: Can't close all orders together at one time!posted in Questions & Answers
I am not sure, I rarely use MT5, is this a button like the x in the terminal window, or a separate button?
-
RE: Searching past information of an indicatorposted in Questions & Answers
For 1 period you have the ID to start from because it is the candle before MACD went from <> or ><, to get this save this ID into a new variable, but you will have to set up a separate tree that adds 1 onto that variable every bar.
-
RE: Searching past information of an indicatorposted in Questions & Answers
Just 1 < or> period in the past?
-
RE: How to remove the last digit if the "digit count > 5 "posted in Questions & Answers
do you have the value like "1.089003", and if so would it need to be 1.08 or 1.09? With the code above you can just put the variable name where I put "YourValue"
-
RE: Searching past information of an indicatorposted in Questions & Answers
That will just tell you the current <>0, to look in the past you need to change the starting candle ID.
-
RE: How to remove the last digit if the "digit count > 5 "posted in Questions & Answers
DoubleToString(YourValue,2) this will cut the digits after the "." to 2
-
RE: how to trade depending on object on chartposted in Questions & Answers
Have these lines got a value? How is this value set?
-
RE: RSIposted in Questions & Answers
@princeomughele I am not sure who "your" is to you, but start a fresh question for this.
-
RE: priceposted in Questions & Answers
What I said will get the value between 9 candles before 00:00 till 00:00, your next part won't open a trade unless these values are broken, if it is doing something else take a picture to show, and draw a line on these values so it can be visually checked.