I can see that you have 2 custom indicators. I can't find something wrong with their definitions and I'm not sure what is the problem. I can say that it is important to have all input parameters with their correct data types and correct orders. The names can be different, but each name should look like MQL variable name.
There is one known bug in FxDreema. You can see there are few extra parameters for each custom indicator:
0_1565216936254_cb542307-dc21-4d40-83c0-9fc4e39187b5-image.png
Each one of these parameters have some name. At the end the names of the indicator's parameters and these parameters are merged. Problem happens when the name of one parameter of your indicator is the same as the name of one of those system parameter names. For example this one on the picture is named Period. There are few others - IndicatorBuffers, Symbol, Shift, ModeOutput and some others. These who cause problems are normally Period, Symbol and Shift. So if you have parameter with one of these names, rename it to something else... MyPeriod instead of Period... anything like that.