Save information of certain candlestick for future references.
-
Let say a new candle formed and i want to save its high, closed and low because i dont want to use it at the moment. But i will use it later maybe after next 5 hrs.
-
Use variables to store any information, with the "modify variables" block.
Although you need some logic to reset the data and restrict its process, you probably dont want replace the data on every bar? -
ok thanks... not every bar.. just special bar..
-
All right, so create variables for each piece of info (openprice etc....)
To use only on special bar, you need condition, like if openprice = 0, only then modify it
and then reset it back to 0 every day or whatever fits
-
Honestly i dont know how to do that..;(
-
https://fxdreema.com/help/working-with/constants-and-variables
Here's some info about constants and variables.
You can create your variables to the variable list, which is on the left in builder, above the search box.
Just create some system with "modify variables" block, test it around, you will (eventually) see how they work
You can replace nearly any value with a variable or constant, by right-clicking the number
-
ok tq Roar.. you the best.