Skip to content

Commit 380071b

Browse files
committed
version 3.14
1 parent a73e2c0 commit 380071b

File tree

131 files changed

+5283
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+5283
-235
lines changed

Experts/2MA_Cross.ex5

75 KB
Binary file not shown.

Experts/2MA_Cross.mq5

Lines changed: 419 additions & 0 deletions
Large diffs are not rendered by default.

Experts/PriceMA_Cross.ex5

72.8 KB
Binary file not shown.

Experts/PriceMA_Cross.mq5

Lines changed: 439 additions & 0 deletions
Large diffs are not rendered by default.

Experts/RangeBars_ExampleEA.ex5

25 KB
Binary file not shown.

Experts/RangeBars_ExampleEA.mq5

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
input int InpRSIPeriod = 14; // RSI period
77

8+
//#define DEVELOPER_VERSION // used when I develop ;) should always be commented out
9+
810
//
911
// SHOW_INDICATOR_INPUTS *NEEDS* to be defined, if the sEA needs to be *tested in MT5's backtester*
1012
// -------------------------------------------------------------------------------------------------

Experts/RangeBars_ExampleEA2.ex5

57.2 KB
Binary file not shown.

Experts/RangeBars_ExampleEA2.mq5

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
// Helper functions for placing market orders.
99
//
1010

11-
#define DEVELOPER_VERSION
1211
#include <AZ-INVEST/SDK/TradeFunctions.mqh>
1312

13+
//#define DEVELOPER_VERSION // used when I develop ;) should always be commented out
14+
1415
//
1516
// Inputs
1617
//
@@ -40,7 +41,7 @@ ulong currentTicket;
4041
// the RangeBars indicator attached.
4142
//
4243

43-
#define SHOW_INDICATOR_INPUTS
44+
//#define SHOW_INDICATOR_INPUTS
4445

4546
//
4647
// You need to include the RangeBars.mqh header file
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
//#define DEVELOPER_VERSION
2+
//#define DISPLAY_DEBUG_MSG
3+
#define MQL5_MARKET_VERSION
4+
5+
//#define P_RENKO_BR_PRO
6+
//#define ULTIMATE_RENKO_LICENSE
7+
#define RANGEBAR_LICENSE
8+
//#define SECONDSCHART_LICENSE
9+
//#define TICKCHART_LICENSE (obsolete)
10+
//#define VOLUMECHART_LICENSE
11+
//#define LINEBREAKCHART_LICENSE
12+
13+
#ifdef P_RENKO_BR_PRO
14+
#include <AZ-INVEST/SDK/MedianRenkoIndicator.mqh>
15+
#define AZINVEST_CCI MedianRenkoIndicator
16+
#endif
17+
18+
#ifdef TICKCHART_LICENSE
19+
#include <AZ-INVEST/SDK/TickChartIndicator.mqh>
20+
#define AZINVEST_CCI TickChartIndicator
21+
#endif
22+
23+
#ifdef RANGEBAR_LICENSE
24+
#include <AZ-INVEST/SDK/RangeBarIndicator.mqh>
25+
#define AZINVEST_CCI RangeBarIndicator
26+
#endif
27+
28+
#ifdef ULTIMATE_RENKO_LICENSE
29+
#include <AZ-INVEST/SDK/MedianRenkoIndicator.mqh>
30+
#define AZINVEST_CCI MedianRenkoIndicator
31+
#endif
32+
33+
#ifdef SECONDSCHART_LICENSE
34+
#include <AZ-INVEST/SDK/SecondsChartIndicator.mqh>
35+
#define AZINVEST_CCI SecondsChartIndicator
36+
#endif
37+
38+
#ifdef VOLUMECHART_LICENSE
39+
#include <AZ-INVEST/SDK/VolumeChartIndicator.mqh>
40+
#define AZINVEST_CCI VolumeChartIndicator
41+
#endif
42+
43+
#ifdef LINEBREAKCHART_LICENSE
44+
#include <AZ-INVEST/SDK/LineBreakChartIndicator.mqh>
45+
#define AZINVEST_CCI LineBreakChartIndicator
46+
#endif
47+
48+
49+
#ifdef AZINVEST_CCI
50+
AZINVEST_CCI customChartIndicator;
51+
#endif
52+
106 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)