Hello Barry, here you have the full sets of the EA that is running the above test.
Hope this helps...
As you can see Bollinger filter is turned off on the test. And GBPCHF only works for the default pairs...
extern string eaname = "[6.1]"; // Expert Name and first part of comment line
extern int Magic = 1001; // Magic Number ( 0 - for All positions)
extern bool Autotrade = true; // Set to false to prevent an entry after an exit
extern string Symbol1 = "GBPJPY";
extern bool Symbol1isLong = true; // Set to true to put long orders on the second pair
extern string Symbol2 = "CHFJPY";
extern bool Symbol2isLong = false; // Set to true to put long orders on the second pair
extern string Lotsizes = "Set Ratio to 1 to use equal";
extern double Lots = 0.1; // Lots for first pair if MM is turned off
extern bool UseAutoRatio = true;
extern double Ratio = 1.8; // Ratio between the two pairs
extern double SMA_Value_for_Range = 200;
extern string Data = " Input Data ";
extern bool StopManageAcc = false; // Stop of Manage Account switch(Close All Trades)
extern double MaxLoss = 0; // Maximum total loss in pips or USD
extern string Data2 = "Correlation Settings";
extern bool UseCorrelation = true; // Set to true if you want to use correlation as an entry signal
extern int cPeriod = 20; // If the correlation is used to check before put new Orders
extern double MinCorrelation = 0.8;
extern double MaxCorrelation = 1.0;
extern string Data3 = "Bollinger Band Settings";
extern bool UseBollinger = false; // Set to true to use Bollinger bands as an entry signal
extern string Bollinger_Symbol = "GBPCHF";
extern double Bollinger_Period = 20; // Period must be in minutes
extern double Bollinger_TF = 60;
extern double Bollinger_Dev = 2;
extern string Data4 = "SWAP Settings";
extern bool UseSwap = true; // Select true if you want to use swap on profit calculation
extern string Data5 = "Money Management";
extern bool AccountIsMicro = false; // Set true if you use a micro account
extern double ProfitTarget = 50; // Profit target in pips or USD
bool UsePips = false;
extern bool MoneyManagement = true;
extern double Risk = 20; // Risk
extern double MaxLotSize = 100;
extern bool AutoProfit = true;
extern double AutoProfitRatio = 2;
extern bool EmailReport = false;