By the way, there is one undocumented thing you can do in Adjust. Normally we start with +, -, * or / and the things we write in this field are put somewhere in the code after the value. For example, let's say the value is called ATR. Then we write + 0.1. At the end we have something like this:
ATR = ATR + 0.1
...where the ATR = ATR part is outside our reach, only the + 0.1 part is added.
One day I added new functionality. Let's write = $ + 0.1. Then the result will be the same:
ATR = ATR + 0.1
but now we control the whole = ATR + 0.1 part. The dollar symbol is replaced with the variable that represents the indicator or whatever it is. In my example this is ATR. But let's make it different. Let's write = 2 * $ in Adjust. Then we will have something like this:
ATR = 2 * ATR
Some example here: https://fxdreema.com/shared/UNvVIVJJ
The important thing here is to start with =. Some people doesn't even write + or - or whatever. By default, if the contents in Adjust doesn't start with +, -, *, / or =, then + is used.