Skip to content

Commit eed1c19

Browse files
authored
Merge pull request #42 from EA31337/dev
Development enhancements
2 parents e99509b + 1e44c74 commit eed1c19

10 files changed

Lines changed: 40 additions & 42 deletions

File tree

.github/workflows/check.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@ jobs:
1010
Pre-commit:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/cache@v1
13+
- uses: actions/checkout@v3
14+
- uses: actions/cache@v3
1515
with:
1616
path: ~/.cache/pre-commit
1717
key: pre-commit|${{ hashFiles('.pre-commit-config.yaml') }}
18-
- uses: actions/setup-python@v2
19-
with:
20-
python-version: 3.9
21-
- uses: pre-commit/action@v2.0.3
18+
- uses: actions/setup-python@v3
19+
- uses: pre-commit/action@v3.0.0

src/EA31337-Libre.mq4

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//+------------------------------------------------------------------+
22
//| EA31337 Libre - Forex trading robot |
3-
//| Copyright 2016-2022, EA31337 Ltd |
3+
//| Copyright 2016-2023, EA31337 Ltd |
44
//| https://github.com/EA31337 |
55
//+------------------------------------------------------------------+
66

@@ -9,14 +9,14 @@
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation, either version 3 of the License, or
1111
* (at your option) any later version.
12-
12+
*
1313
* This program is distributed in the hope that it will be useful,
1414
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
* GNU General Public License for more details.
17-
17+
*
1818
* You should have received a copy of the GNU General Public License
19-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2020
*/
2121

2222
// Main code.

src/EA31337-Libre.mq5

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//+------------------------------------------------------------------+
22
//| EA31337 Libre - Forex trading robot |
3-
//| Copyright 2016-2022, EA31337 Ltd |
3+
//| Copyright 2016-2023, EA31337 Ltd |
44
//| https://github.com/EA31337 |
55
//+------------------------------------------------------------------+
66

@@ -9,14 +9,14 @@
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation, either version 3 of the License, or
1111
* (at your option) any later version.
12-
12+
*
1313
* This program is distributed in the hope that it will be useful,
1414
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
* GNU General Public License for more details.
17-
17+
*
1818
* You should have received a copy of the GNU General Public License
19-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2020
*/
2121

2222
// Includes.

src/EA31337-Libre.mqproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"platform" :"mt5",
33
"program_type":"expert",
4-
"copyright" :"Copyright 2016-2022, EA31337 Ltd",
4+
"copyright" :"Copyright 2016-2023, EA31337 Ltd",
55
"link" :"https:\/\/github.com\/EA31337\/EA31337-Libre",
6-
"version" :"1.012",
6+
"version" :"1.013",
77
"description" :"Forex trading robot",
88
"optimize" :"0",
99
"fpzerocheck" :"1",

src/include/classes

Submodule classes updated 589 files

src/include/define.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//+------------------------------------------------------------------+
22
//| EA31337 Libre - Forex trading robot |
3-
//| Copyright 2016-2022, EA31337 Ltd |
3+
//| Copyright 2016-2023, EA31337 Ltd |
44
//| https://github.com/EA31337 |
55
//+------------------------------------------------------------------+
66

@@ -9,23 +9,23 @@
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation, either version 3 of the License, or
1111
* (at your option) any later version.
12-
12+
*
1313
* This program is distributed in the hope that it will be useful,
1414
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
* GNU General Public License for more details.
17-
17+
*
1818
* You should have received a copy of the GNU General Public License
19-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2020
*/
2121

2222
// EA defines.
2323
#define ea_name "EA31337 Libre"
24-
#define ea_version "1.012"
24+
#define ea_version "1.013"
2525
#define ea_desc "Forex trading robot"
2626
#define ea_link "https://github.com/EA31337/EA31337-Libre"
2727
#define ea_author "kenorb"
28-
#define ea_copy "Copyright 2016-2022, EA31337 Ltd"
28+
#define ea_copy "Copyright 2016-2023, EA31337 Ltd"
2929

3030
// Other defines.
3131
//#define __config__ // Loads params from the config files.

src/include/enum.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//+------------------------------------------------------------------+
22
//| EA31337 Libre - Forex trading robot |
3-
//| Copyright 2016-2022, EA31337 Ltd |
3+
//| Copyright 2016-2023, EA31337 Ltd |
44
//| https://github.com/EA31337 |
55
//+------------------------------------------------------------------+
66

@@ -9,14 +9,14 @@
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation, either version 3 of the License, or
1111
* (at your option) any later version.
12-
12+
*
1313
* This program is distributed in the hope that it will be useful,
1414
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
* GNU General Public License for more details.
17-
17+
*
1818
* You should have received a copy of the GNU General Public License
19-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2020
*/
2121

2222
#define ENUM_STRATEGY_DEFINED

src/include/includes.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//+------------------------------------------------------------------+
22
//| EA31337 Libre - Forex trading robot |
3-
//| Copyright 2016-2022, EA31337 Ltd |
3+
//| Copyright 2016-2023, EA31337 Ltd |
44
//| https://github.com/EA31337 |
55
//+------------------------------------------------------------------+
66

@@ -9,14 +9,14 @@
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation, either version 3 of the License, or
1111
* (at your option) any later version.
12-
12+
*
1313
* This program is distributed in the hope that it will be useful,
1414
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
* GNU General Public License for more details.
17-
17+
*
1818
* You should have received a copy of the GNU General Public License
19-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2020
*/
2121

2222
// Defines.

src/include/inputs.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//+------------------------------------------------------------------+
22
//| EA31337 Libre - Forex trading robot |
3-
//| Copyright 2016-2022, EA31337 Ltd |
3+
//| Copyright 2016-2023, EA31337 Ltd |
44
//| https://github.com/EA31337 |
55
//+------------------------------------------------------------------+
66

@@ -9,14 +9,14 @@
99
* it under the terms of the GNU General Public License as published by
1010
* the Free Software Foundation, either version 3 of the License, or
1111
* (at your option) any later version.
12-
12+
*
1313
* This program is distributed in the hope that it will be useful,
1414
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1616
* GNU General Public License for more details.
17-
17+
*
1818
* You should have received a copy of the GNU General Public License
19-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2020
*/
2121

2222
//+------------------------------------------------------------------+

0 commit comments

Comments
 (0)