bleh
[mqlkit.git] / include / OrderLibE.mqh
blob729c246e8ee42ae667377a01d93bc8a8f0bb0f8a
1 /*=============================================================\r
2  Info:    OrderLib Settings\r
3  Name:    OrderLibE.mqh\r
4  Author:  Eric Pribitzer\r
5  Version: 0.7\r
6  Update:  2010-02-11 \r
7  Notes:   ---\r
8   \r
9  Copyright (C) 2010 Erich Pribitzer \r
10  Email: seizu@gmx.at\r
11 =============================================================*/\r
13 #property copyright "Copyright © 2011, Erich Pribitzer"\r
14 #property link      "http://www.wartris.com"\r
16 extern string OL_SETTINGS              = "==== ORDERLIB SETTINGS ====";      //\r
17 extern bool   OL_ALLOW_ORDER           = true;\r
18 extern double OL_RISK_PERC             = 0;                                  // in %\r
19 extern int    OL_RISK_PIPS             = 0;                                  // 0=auto (calc price-stoploss)\r
20 extern int    OL_PROFIT_PIPS           = 0;\r
21 extern int    OL_TRAILING_STOP         = 0;\r
22 extern double OL_LOT_SIZE              = 1;                                  // 0=auto lot depends on risk pips and risk percent per trade\r
23 extern double OL_INITIAL_LOT           = 0;\r
24 extern double OL_CUSTOM_TICKVALUE      = 0;                                  // 0=no custom tickvalue (for testing mode only)\r
25 extern int    OL_SLIP_PAGE             = 2;\r
26 extern bool   OL_STOPSBYMODIFY         = true;                               // true = sl,tp will set by modify order\r
27 extern double OL_MAX_LOT               = 2;\r
28 extern int    OL_MAX_ORDERS            = 3;\r
29 extern int    OL_MAGIC                 = 0xA1200;\r
30 extern bool   OL_ORDER_DUPCHECK        = false;\r
31 extern bool   OL_OPPOSITE_CLOSE        = false;                             // oder will only closed when TP lies between SL and Price of an opposit order    \r
32 extern bool   OL_ORDER_COLOR           = false;\r
33 extern bool   OL_MYSQL_LOG             = false;    \r