Skip to content

Commit

Permalink
Renames Meta Reversal to Trend
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Sep 23, 2023
1 parent a9cefb3 commit 6e9af6a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Stg_Meta_Reversal.mq4 → Stg_Meta_Trend.mq4
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
*/

// Includes the main code.
#include "Stg_Meta_Reversal.mq5"
#include "Stg_Meta_Trend.mq5"
2 changes: 1 addition & 1 deletion Stg_Meta_Reversal.mq5 → Stg_Meta_Trend.mq5
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
File renamed without changes.

0 comments on commit 6e9af6a

Please sign in to comment.