Skip to content

Commit

Permalink
Merge pull request #21 from EA31337/v1.006-backtest
Browse files Browse the repository at this point in the history
Development improvements
  • Loading branch information
kenorb authored Sep 18, 2021
2 parents 1b44c0b + 2f41132 commit e3423e0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/EA31337-Libre.mqproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"program_type":"expert",
"copyright" :"Copyright 2016-2021, EA31337 Ltd",
"link" :"https:\/\/github.com\/EA31337\/EA31337-Libre",
"version" :"1.005",
"version" :"1.006",
"description" :"Forex trading robot",
"optimize" :"0",
"fpzerocheck" :"1",
Expand Down
2 changes: 1 addition & 1 deletion src/include/classes
Submodule classes updated 57 files
+27 −0 .github/workflows/test.yml
+3 −0 .gitignore
+12 −8 Account.mqh
+292 −0 BufferFXT.mqh
+1 −268 Chart.struct.h
+294 −0 Chart.struct.static.h
+2 −0 Condition.enum.h
+2 −2 DateTime.mqh
+22 −6 DateTime.struct.h
+22 −1 Dict.mqh
+1 −1 DictBase.mqh
+11 −8 DictObject.mqh
+46 −27 DictStruct.mqh
+93 −13 EA.mqh
+6 −6 Indicator.enum.h
+4 −7 Indicator.mqh
+10 −5 Indicator.struct.h
+4 −7 Indicators/Indi_AppliedPrice.mqh
+21 −8 Indicators/Indi_DEMA.mqh
+2 −1 Indicators/Indi_Demo.mqh
+5 −5 Indicators/Indi_MA.mqh
+4 −4 Indicators/Indi_Pivot.mqh
+4 −4 Indicators/Indi_Price.mqh
+27 −0 Indicators/tests/Indi_Pivot.test.mq4
+57 −0 Indicators/tests/Indi_Pivot.test.mq5
+1 −1 Log.mqh
+1 −1 Market.mqh
+5 −3 Market.struct.h
+3 −3 Object.mqh
+8 −3 Order.enum.h
+228 −259 Order.mqh
+131 −42 Order.struct.h
+148 −0 OrderQuery.h
+1 −44 Orders.mqh
+2 −1 SerializerConverter.mqh
+41 −65 Strategy.mqh
+15 −9 Strategy.struct.h
+4 −4 SymbolInfo.mqh
+5 −4 SymbolInfo.static.h
+1 −1 Timer.mqh
+18 −6 Trade.enum.h
+320 −66 Trade.mqh
+3 −2 docs/api/Doxyfile
+10 −0 docs/api/Doxyfile.in
+87 −0 docs/api/conf.py
+17 −0 docs/api/index.rst
+28 −0 tests/BufferFXTTest.mq4
+51 −0 tests/BufferFXTTest.mq5
+11 −19 tests/ChartTest.mq5
+2 −2 tests/IndicatorsTest.mq5
+2 −0 tests/MarketTest.mq5
+28 −0 tests/OrderQueryTest.mq4
+92 −0 tests/OrderQueryTest.mq5
+5 −3 tests/OrderTest.mq5
+2 −3 tests/StrategyTest-RSI.mq5
+8 −9 tests/SymbolInfoTest.mq5
+9 −0 tests/docker-compose.yml
2 changes: 1 addition & 1 deletion src/include/define.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

// EA defines.
#define ea_name "EA31337 Libre"
#define ea_version "1.005"
#define ea_version "1.006"
#define ea_desc "Forex trading robot"
#define ea_link "https://github.com/EA31337/EA31337-Libre"
#define ea_author "kenorb"
Expand Down
6 changes: 3 additions & 3 deletions src/include/includes.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

// Defines.
#include "define.h"

// Includes EA framework.
#include "classes/Account.mqh"
#include "classes/Chart.mqh"
Expand Down Expand Up @@ -71,9 +74,6 @@
#include "enum.h"
#include "strategies/enum.h"

// Defines.
#include "define.h"

// Main user inputs.
#include "inputs.h"

Expand Down
2 changes: 1 addition & 1 deletion src/include/strategies
Submodule strategies updated 41 files
+2 −2 .github/workflows/compile.yml
+1 −1 AC
+1 −1 AD
+1 −1 ADX
+1 −1 ATR
+1 −1 Alligator
+1 −1 Awesome
+1 −1 BWMFI
+1 −1 Bands
+1 −1 BearsPower
+1 −1 BullsPower
+1 −1 CCI
+1 −1 DEMA
+1 −1 DeMarker
+1 −1 Demo
+1 −1 ElliottWave
+1 −1 Envelopes
+1 −1 Force
+1 −1 Fractals
+1 −1 Gator
+1 −1 HeikenAshi
+1 −1 Ichimoku
+1 −1 MA
+1 −1 MACD
+1 −1 MFI
+1 −1 Momentum
+1 −1 OBV
+1 −1 OsMA
+1 −1 Pattern
+1 −0 README.md
+1 −1 RSI
+1 −1 RVI
+1 −1 SAR
+1 −1 SAWA
+1 −1 SVE_Bollinger_Bands
+1 −1 StdDev
+1 −1 Stochastic
+1 −1 TMA_Band_SVE_True
+1 −1 TMA_True
+1 −1 WPR
+1 −1 ZigZag

0 comments on commit e3423e0

Please sign in to comment.