-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/v3.004-dev' into v3.007-dev-new
* origin/v3.004-dev: (42 commits) Improves Fibonacci calculation for Pivot Indicators: Renames some variables to avoid global variable conflict Indi_ADXW: Fixes logic for SetCustomIndicatorName() ADXW: Renames variables to avoid global conflicts Indi_ADXW: Fixes logic for SetCustomIndicatorName() ADXW: Renames variables to avoid global conflicts Little changes for array #defines. WIP. Added rates_total validation for all the indicators in `Indicators` folder. WIP. Fixing MQL/C++ errors. Moving serialization methods to separate files. WIP. Fixing C++ include loops. WIP. Fixing C++ errors. WIP. Adding candle invalidation. Still not working. Required for IndicatorCandle test. WIP. Fixing tests. WIP. Indi_Bands now uses OnCalculate() method. Fixing shifts in all the indicators. WIP. Shift parameters refactoring for Indicator/IndicatorData/other classes. Still some errors. WIP. Added explanation of shift parameters in Indicator/IndicatorData classes for following methods: GetEntryValue/GetEntryAlter/GetValue/GetEntry(). WIP. Fixing inconsistencies in shift given into indicators' params and the one passed to GetEntry/GetEntryAlter(). Also adding requirement of minimum bars for OnCalculate based indicators. WIP. Looks like indicators' custom buffer requires refactoring and use ItemsHistory class instead of BufferStruct. We'll try to fix other tests before another refactor. WIP. Fixing indicator tests. WIP. Fixing indicators that depends on candles that not yet occured. ...
- Loading branch information
Showing
234 changed files
with
5,177 additions
and
3,493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
name: Test Serializer | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
pull_request: | ||
paths: | ||
- 'Serializer/**' | ||
- '.github/workflows/test-serializer.yml' | ||
push: | ||
paths: | ||
- 'Serializer/**' | ||
- '.github/workflows/test-serializer.yml' | ||
|
||
jobs: | ||
|
||
compile: | ||
name: Compile | ||
uses: ./.github/workflows/compile.yml | ||
with: | ||
artifact_prefix: mt | ||
path: Exchange | ||
skip_cleanup: true | ||
|
||
Serializer-Tests-MQL4: | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: serializer/tests | ||
needs: compile | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
test: | ||
- Serializer.test | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: files-ex4 | ||
- name: Run ${{ matrix.test }} | ||
uses: fx31337/mql-tester-action@master | ||
with: | ||
BtDays: 4-8 | ||
BtMonths: 1 | ||
BtYears: 2021 | ||
MtVersion: 4.0.0.1359 | ||
RunOnError: show_logs 200 | ||
TestExpert: ${{ matrix.test }} | ||
timeout-minutes: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
--- | ||
exclude: '\.md$' | ||
repos: | ||
|
||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.