And Block
-
Hi
i have question

In this picture in the area 1 the And block is working right
but in the area 2 i want to be able set a boolean for block 9, when its false, the And block won't work because the line from block 9 doesn't work
how can i fix that?
i want to be able to set a boolean for one condition and then connect it to And block -
bool is simply true/false, so i9t either pass es on to next or not, without seeing inside blocks your conditions may be the bigger problem, once per bar above means it fires first requiring the condition to be true at that point in time, once per bar is generally better under the conditions. The and block is pointless in this case, because condition on top of condition on top of condition without the and means 3 conditions have to be true to work. The and block is expecting the 3 above blocks to be true at the same time, but if the bool is false then only 2 can be, if you connect the yellow bool dot to the and block then the 3rd condition will be skipped and and will work of 2 conditions.
-
@jstap thanks