https://fxdreema.com/shared/bSz1KkGwe
Here is how to get signals from it's buffers, I draw arrows on the main chart when signals come.
Buffers 0 and 1 seems to work when candle offset >=2 is used, I used 2 for this example (look at Candle ID parameter).
I also found a bug in fxDreema when adding an indicator with commented extern parameters like this one:
extern string separator1 = "*** Stochastic Settings ***";
/*extern int fastEMA = 12;
extern int slowEMA = 26;
extern int signalSMA = 9;*/
extern int KPeriod=8;
extern int DPeriod=3;
the result is that fxDreema reads more parameters than needed and then the backtester does some bad things.
Make sure that you have added that indicator with all the correct parameters, or clear that comment and add the indicator again:
extern string separator1 = "*** Stochastic Settings ***";
extern int KPeriod=8;
extern int DPeriod=3;