diff --git a/.github/workflows/backtest.yml b/.github/workflows/backtest.yml index aa22124..273f2d9 100644 --- a/.github/workflows/backtest.yml +++ b/.github/workflows/backtest.yml @@ -41,14 +41,14 @@ jobs: include: . init-platform: true mt-version: 5.0.0.2361 - path: Stg_Meta_Reversal.mq4 + path: Stg_Meta_Trend.mq4 verbose: true - name: Compile for MQL5 uses: fx31337/mql-compile-action@master with: include: . mt-version: 5.0.0.2515 - path: Stg_Meta_Reversal.mq5 + path: Stg_Meta_Trend.mq5 verbose: true - name: List compiled files run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname' @@ -79,7 +79,7 @@ jobs: OptFormatBrief: true OptFormatJson: true OptVerbose: true - TestExpert: "Stg_Meta_Reversal" + TestExpert: "Stg_Meta_Trend" TestPeriod: M1 TestReportName: Report-${{ matrix.year }}-${{ matrix.month }} - name: Upload results diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index b847826..ae0bd66 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -43,14 +43,14 @@ jobs: include: . init-platform: true mt-version: 5.0.0.2361 - path: Stg_Meta_Reversal.mq4 + path: Stg_Meta_Trend.mq4 verbose: true - name: Compile for MQL5 uses: fx31337/mql-compile-action@master with: include: . mt-version: 5.0.0.2515 - path: Stg_Meta_Reversal.mq5 + path: Stg_Meta_Trend.mq5 verbose: true - name: List compiled files run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname' diff --git a/README.md b/README.md index d41f15a..988cf8c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Strategy Meta Reversal +# Strategy Meta Trend [![Status][gha-image-check-master]][gha-link-check-master] [![Status][gha-image-compile-master]][gha-link-compile-master] @@ -7,7 +7,7 @@ [![License][license-image]][license-link] [![Edit][gh-edit-badge]][gh-edit-link] -Reversal meta strategy reverses signals of another strategy. +Trend meta strategy to filter out signals of other strategies based on the current trend. ## Dependencies @@ -21,12 +21,12 @@ Reversal meta strategy reverses signals of another strategy. [gh-discuss-link]: https://github.com/EA31337/EA31337-Strategies/discussions [gh-edit-badge]: https://img.shields.io/badge/GitHub-edit-purple.svg?logo=github -[gh-edit-link]: https://github.dev/EA31337/Strategy-Meta_Reversal +[gh-edit-link]: https://github.dev/EA31337/Strategy-Meta_Trend -[gha-link-check-master]: https://github.com/EA31337/Strategy-Meta_Reversal/actions?query=workflow:Check+branch%3Amaster -[gha-image-check-master]: https://github.com/EA31337/Strategy-Meta_Reversal/workflows/Check/badge.svg?branch=master -[gha-link-compile-master]: https://github.com/EA31337/Strategy-Meta_Reversal/actions?query=workflow:Compile+branch%3Amaster -[gha-image-compile-master]: https://github.com/EA31337/Strategy-Meta_Reversal/workflows/Compile/badge.svg?branch=master +[gha-link-check-master]: https://github.com/EA31337/Strategy-Meta_Trend/actions?query=workflow:Check+branch%3Amaster +[gha-image-check-master]: https://github.com/EA31337/Strategy-Meta_Trend/workflows/Check/badge.svg?branch=master +[gha-link-compile-master]: https://github.com/EA31337/Strategy-Meta_Trend/actions?query=workflow:Compile+branch%3Amaster +[gha-image-compile-master]: https://github.com/EA31337/Strategy-Meta_Trend/workflows/Compile/badge.svg?branch=master [tg-channel-image]: https://img.shields.io/badge/Telegram-join-0088CC.svg?logo=telegram [tg-channel-link]: https://t.me/EA31337 diff --git a/Stg_Meta_Reversal.mq4 b/Stg_Meta_Trend.mq4 similarity index 93% rename from Stg_Meta_Reversal.mq4 rename to Stg_Meta_Trend.mq4 index 581e85c..38cdb8e 100644 --- a/Stg_Meta_Reversal.mq4 +++ b/Stg_Meta_Trend.mq4 @@ -10,4 +10,4 @@ */ // Includes the main code. -#include "Stg_Meta_Reversal.mq5" +#include "Stg_Meta_Trend.mq5" diff --git a/Stg_Meta_Reversal.mq5 b/Stg_Meta_Trend.mq5 similarity index 98% rename from Stg_Meta_Reversal.mq5 rename to Stg_Meta_Trend.mq5 index c340563..79f8b07 100644 --- a/Stg_Meta_Reversal.mq5 +++ b/Stg_Meta_Trend.mq5 @@ -32,7 +32,7 @@ input ENUM_LOG_LEVEL Log_Level = V_INFO; // Log level. input bool Info_On_Chart = true; // Display info on chart. // Includes strategy class. -#include "Stg_Meta_Reversal.mqh" +#include "Stg_Meta_Trend.mqh" // Defines. #define ea_name "Strategy Meta Reversal" diff --git a/Stg_Meta_Reversal.mqh b/Stg_Meta_Trend.mqh similarity index 100% rename from Stg_Meta_Reversal.mqh rename to Stg_Meta_Trend.mqh