Skip to content

Commit

Permalink
Renames MA to MA Breakout
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Sep 23, 2023
1 parent 97be963 commit afce26d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ jobs:
include: .
init-platform: true
mt-version: 5.0.0.2361
path: Stg_MA.mq4
path: Stg_MA_Breakout.mq4
verbose: true
- name: Compile for MQL5
uses: fx31337/mql-compile-action@master
with:
include: .
mt-version: 5.0.0.2515
path: Stg_MA.mq5
path: Stg_MA_Breakout.mq5
verbose: true
- name: List compiled files
run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname'
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
OptFormatBrief: true
OptFormatJson: true
OptVerbose: true
TestExpert: "Stg_MA"
TestExpert: "Stg_MA_Breakout"
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 @@ -37,14 +37,14 @@ jobs:
include: .
init-platform: true
mt-version: 5.0.0.2361
path: Stg_MA.mq4
path: Stg_MA_Breakout.mq4
verbose: true
- name: Compile for MQL5
uses: fx31337/mql-compile-action@master
with:
include: .
mt-version: 5.0.0.2515
path: Stg_MA.mq5
path: Stg_MA_Breakout.mq5
verbose: true
- name: List compiled files
run: '(Get-ChildItem -Recurse -Path . -Include *.ex[45]).fullname'
Expand Down
21 changes: 7 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Strategy MA
# Strategy MA Breakout

[![Status][gha-image-check-master]][gha-link-check-master]
[![Status][gha-image-compile-master]][gha-link-compile-master]
Expand All @@ -7,19 +7,12 @@
[![License][license-image]][license-link]
[![Edit][gh-edit-badge]][gh-edit-link]

Strategy based on the moving average price indicators.
Strategy based on the moving average price indicators implementing breakout signal.

## Dependencies

| Tag | Framework |
|:--------:|:---------:|
| v1.000 | v2.000 |
| v1.001 | v2.001 |
| ... | ... |
| v1.010 | v2.010 |
| v1.011 | v2.011.1 |
| v1.012 | v2.012.1 |
| v1.013 | v2.013 |
| v2.000 | v3.000.1 |

<!-- Named links -->
Expand All @@ -28,12 +21,12 @@ Strategy based on the moving average price indicators.
[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-MA
[gh-edit-link]: https://github.dev/EA31337/Strategy-MA_Breakout

[gha-link-check-master]: https://github.com/EA31337/Strategy-MA/actions?query=workflow:Check+branch%3Amaster
[gha-image-check-master]: https://github.com/EA31337/Strategy-MA/workflows/Check/badge.svg?branch=master
[gha-link-compile-master]: https://github.com/EA31337/Strategy-MA/actions?query=workflow:Compile+branch%3Amaster
[gha-image-compile-master]: https://github.com/EA31337/Strategy-MA/workflows/Compile/badge.svg?branch=master
[gha-link-check-master]: https://github.com/EA31337/Strategy-MA_Breakout/actions?query=workflow:Check+branch%3Amaster
[gha-image-check-master]: https://github.com/EA31337/Strategy-MA_Breakout/workflows/Check/badge.svg?branch=master
[gha-link-compile-master]: https://github.com/EA31337/Strategy-MA_Breakout/actions?query=workflow:Compile+branch%3Amaster
[gha-image-compile-master]: https://github.com/EA31337/Strategy-MA_Breakout/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_MA.mq4 → Stg_MA_Breakout.mq4
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
*/

// Includes the main code.
#include "Stg_MA.mq5"
#include "Stg_MA_Breakout.mq5"
2 changes: 1 addition & 1 deletion Stg_MA.mq5 → Stg_MA_Breakout.mq5
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ input ENUM_LOG_LEVEL Log_Level = V_INFO; // Log level.
input bool Info_On_Chart = true; // Display info on chart.

// Includes strategy.
#include "Stg_MA.mqh"
#include "Stg_MA_Breakout.mqh"

// Defines.
#define ea_name "Strategy MA"
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit afce26d

Please sign in to comment.