Quote:
Originally Posted by edalco
Hi guys, I'm using Alpari UK with 5 decimals. Tried searching for broker setting in the code in metaEditor setting to chande to "10" but to no avail. At the moment blessing 2 will only open trade when "AutoCal" to false but fail to open trade when it is set to "on"
Would appreciate your help in these area....thank you so much.
Best regards.
|
Hello edalco
extern int Set2Count = 4; // Level 2 max levels
extern int MaxLevel = 99; // Level 2 max levels (stops placing orders when reaches maxlvl2)
extern extern int Set1Count = 4; // Level 1 max levels
int BELevel = 12; // Close All level , when reaches this level, doesn't wait for TP to be hit
extern int slippage = 5.0; // Tolerance of order slips/requotes for closing
//+------------------------------------------------------------------+
//| Internal Parameters Set |
//+------------------------------------------------------------------+
bool ca = false;
string EA_name = "Blessing © FiFtHeLeMeNt/J Talon LLC";
int magic = 0;
double slip = 0;
int d = 5; // Used to offset entry to round numbers , for example if you set d=5,
// it will place its sell order on 1.5795 instead of 1.5780
double LotInc = 0; // Lot Increment on each level, very dangerous
string Filename;
int BrokerDecimal =10; Here it is

string POSL_On = "No";
int count;
I hope this will help.
Best Regards
George