Feature Request:
-
ability to store set of blocks (a procedure) in 1 block that can be referenced by other blocks. For example, a procedure is created with 20 blocks to check for certain market conditions and perform several calculations involving functions. There are 6 parts of the ea that all need to make reference to this procedure but in order to do so the procedure must be copied 6 times (with all 20 blocks) to each of the 6 areas of the ea that require this procedure - this method involves lots of duplicate blocks - OR each area of the ea must be connected to the procedure - this method is messy as it creates lots of connectors over the screen. Solution: store procedure in single block that can be connected to each of the 6 areas of the ea!
-
I recommend to use the same group of blocks instead of copy-paste them. I know it feels natural for beginner-programmer to copy-paste things, but this is not a good idea actually. Well, fxDreema is not exactly programming tool and it's not that flexible as the plain code, but the best is if any part of the program exists in one place and if needed it is used multiple times. Using Variables can help with this in general, not in every situation, but if it is possible use the same group of blocks with different parameters
Even better is to program custom code with all the specific stuff, but this is for someone who knows how to do it 