Skip to content

Commit

Permalink
Updates classes and strategies to tag release
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Nov 7, 2021
1 parent 92513d3 commit 112eba5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/EA31337-Libre.mq5
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,6 @@ bool DisplayStartupInfo(bool _startup = false, string sep = "\n") {
_output += "TERMINAL: " + ea.GetTerminal().ToString() + sep;
_output += "ACCOUNT: " + ea.Account().ToString() + sep;
_output += "EA: " + ea.ToString() + sep;
_output += "SYMBOL: " + ea.SymbolInfo().ToString() + sep;
_output += "MARKET: " + ea.Market().ToString() + sep;
if (_startup) {
if (ea.GetState().IsTradeAllowed()) {
if (!Terminal::HasError()) {
Expand Down
2 changes: 1 addition & 1 deletion src/include/classes
Submodule classes updated 48 files
+4 −0 .markdownlint.yaml
+3 −3 .pre-commit-config.yaml
+2 −2 Bar.enum.h
+6 −6 Chart.struct.static.h
+1 −1 Convert.mqh
+25 −76 EA.mqh
+5 −3 Indicator.define.h
+40 −12 IndicatorBase.h
+5 −2 Indicators/Indi_AC.mqh
+5 −2 Indicators/Indi_AD.mqh
+2 −1 Indicators/Indi_ADX.mqh
+5 −2 Indicators/Indi_AO.mqh
+2 −1 Indicators/Indi_ATR.mqh
+2 −1 Indicators/Indi_Alligator.mqh
+5 −2 Indicators/Indi_BWMFI.mqh
+3 −1 Indicators/Indi_Bands.mqh
+2 −1 Indicators/Indi_BearsPower.mqh
+2 −1 Indicators/Indi_BullsPower.mqh
+1 −1 Indicators/Indi_DEMA.mqh
+2 −1 Indicators/Indi_DeMarker.mqh
+3 −1 Indicators/Indi_Envelopes.mqh
+2 −1 Indicators/Indi_Force.mqh
+2 −1 Indicators/Indi_Fractals.mqh
+2 −1 Indicators/Indi_Gator.mqh
+1 −1 Indicators/Indi_HeikenAshi.mqh
+2 −1 Indicators/Indi_Ichimoku.mqh
+3 −1 Indicators/Indi_MA.mqh
+2 −1 Indicators/Indi_MACD.mqh
+2 −1 Indicators/Indi_MFI.mqh
+2 −1 Indicators/Indi_Momentum.mqh
+2 −1 Indicators/Indi_OBV.mqh
+2 −1 Indicators/Indi_OsMA.mqh
+2 −0 Indicators/Indi_RSI.mqh
+2 −1 Indicators/Indi_RVI.mqh
+2 −1 Indicators/Indi_SAR.mqh
+3 −1 Indicators/Indi_StdDev.mqh
+2 −1 Indicators/Indi_Stochastic.mqh
+2 −1 Indicators/Indi_WPR.mqh
+1 −1 Indicators/Indi_ZigZag.mqh
+1 −1 Order.struct.h
+22 −12 README.md
+1 −1 SymbolInfo.mqh
+1 −1 SymbolInfo.struct.h
+2 −2 SymbolInfo.struct.static.h
+8 −0 Terminal.define.h
+13 −11 Trade.enum.h
+34 −9 Trade.mqh
+100 −0 Util.h
2 changes: 1 addition & 1 deletion src/include/strategies
Submodule strategies updated 52 files
+8 −10 .github/workflows/compile.yml
+3 −0 .gitmodules
+3 −3 .pre-commit-config.yaml
+1 −1 AC
+1 −1 AD
+1 −1 ADX
+1 −1 AMA
+1 −1 ASI
+1 −1 ATR
+1 −1 ATR_MA_Trend
+1 −1 Alligator
+1 −1 Awesome
+1 −1 BWMFI
+1 −1 Bands
+1 −1 BearsPower
+1 −1 BullsPower
+1 −1 CCI
+1 −1 Chaikin
+1 −1 DEMA
+1 −1 DeMarker
+1 −1 Demo
+1 −1 ElliottWave
+1 −1 Envelopes
+1 −1 Force
+1 −1 Fractals
+1 −1 Gator
+1 −1 HeikenAshi
+1 −1 Ichimoku
+1 −1 MA
+1 −1 MACD
+1 −1 MFI
+1 −1 Momentum
+1 −1 OBV
+1 −1 OsMA
+1 −1 Pattern
+1 −1 Pivot
+32 −0 README.md
+1 −1 RSI
+1 −1 RVI
+1 −1 SAR
+1 −1 SAWA
+1 −1 SVE_Bollinger_Bands
+1 −1 StdDev
+1 −1 Stochastic
+1 −1 SuperTrend
+1 −1 TMAT_SVEBB
+1 −0 TMA_CG
+1 −1 TMA_True
+1 −1 WPR
+1 −1 ZigZag
+51 −45 enum.h
+1 −0 strategies.h

0 comments on commit 112eba5

Please sign in to comment.