how to get candle time and price
-
hi, i have this custom condition ( if Low[2] <= Low[1] && Low[2] <= Low[3] )
how can i get time and high price level for the Low[2] candle and for memorize that time and price data what can i do? -
You can store the value of that low on a variable, but I'm not sure what you exactly mean by 'time'. What time do you mean?
-
by time I mean the exact time of Low2 and then possibly recall the exact candle later
I have a question, do I have to create a variable for every time a minimum is formed?
ex: condition met -> get candle low2 and time by variables -> condition met 2 -> get candle low2 and time by other variables ? -
Correct, you will need 2 different variables for both. One variable for the low price and another one for the time when it happened.
-
sh*t
, i need to buy fxdreema then, thanks for help, i watch some video on your yt cool stuff
There is no way to create an array that counts the maximum and minimum values without making 2 variable for each one, right?
if I have 50 maximums and 50 minimums I will have to create 200 variables, 50 for the price of the maximums, 50 for the time of the maximums and also for the minimums, right? -
In that case you will need some custom code to create those arrays. Sadly, fxDreema is nit designed to create arrays like the one you need, sorry.