diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index 125dabb..15fd695 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -64,6 +64,7 @@ jobs: - OsMA - Oscillator - Oscillator_Multi + - Oscillator_Cross - Pattern - Pinbar - Pivot diff --git a/.gitmodules b/.gitmodules index ec107e4..07d42b8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -106,6 +106,9 @@ [submodule "Oscillator"] path = Oscillator url = https://github.com/EA31337/Strategy-Oscillator.git +[submodule "Oscillator_Cross"] + path = Oscillator_Cross + url = https://github.com/EA31337/Strategy-Oscillator_Cross.git [submodule "Oscillator_Multi"] path = Oscillator_Multi url = https://github.com/EA31337/Strategy-Oscillator_Multi.git diff --git a/Oscillator_Cross b/Oscillator_Cross new file mode 160000 index 0000000..363326f --- /dev/null +++ b/Oscillator_Cross @@ -0,0 +1 @@ +Subproject commit 363326fb59f9411dbcf9c8f2ab770c34cbeffe27 diff --git a/enum.h b/enum.h index fe3b0e4..7749a86 100644 --- a/enum.h +++ b/enum.h @@ -61,6 +61,7 @@ enum ENUM_STRATEGY { STRAT_OBV, // OBV STRAT_OSCILLATOR, // Oscillator STRAT_OSCILLATOR_MULTI, // Oscillator Multi + STRAT_OSCILLATOR_CROSS, // Oscillator Cross STRAT_OSMA, // OSMA STRAT_PATTERN, // Pattern STRAT_PINBAR, // Pinbar diff --git a/strategies.h b/strategies.h index 663c5b3..66df5b2 100644 --- a/strategies.h +++ b/strategies.h @@ -55,6 +55,7 @@ #include "OSMA/Stg_OSMA.mqh" #include "Oscillator/Stg_Oscillator.mqh" #include "Oscillator_Multi/Stg_Oscillator_Multi.mqh" +#include "Oscillator_Cross/Stg_Oscillator_Cross.mqh" #include "Pattern/Stg_Pattern.mqh" #include "Pinbar/Stg_Pinbar.mqh" #include "Pivot/Stg_Pivot.mqh"