├── Expert_version.txt ├── FSB_Expert_MT4.mq4 ├── FSB_Expert_MT5.mq5 ├── Forexsb.com ├── ActionTrade4.mqh ├── ActionTrade5.mqh ├── Custom │ ├── ChandeMomentumOscillator.mqh │ ├── DayOfMonth.mqh │ ├── GatorOscillator.mqh │ ├── MomentumMT.mqh │ ├── MovingAverageOfOscillator.mqh │ ├── PercentBB.mqh │ ├── VidyaMovingAverage.mqh │ └── Volumes.mqh ├── DataMarket.mqh ├── DataSet.mqh ├── Enumerations.mqh ├── HelperMq4.mqh ├── HelperMq5.mqh ├── Helpers.mqh ├── Indicator.mqh ├── IndicatorComp.mqh ├── IndicatorManager.mqh ├── IndicatorParam.mqh ├── IndicatorSlot.mqh ├── Indicators │ ├── ADX.mqh │ ├── ATRMAOscillator.mqh │ ├── ATRStop.mqh │ ├── AcceleratorOscillator.mqh │ ├── AccountPercentStop.mqh │ ├── AccumulationDistribution.mqh │ ├── Alligator.mqh │ ├── AroonHistogram.mqh │ ├── AverageTrueRange.mqh │ ├── AwesomeOscillator.mqh │ ├── BBPMAOscillator.mqh │ ├── BalanceofPower.mqh │ ├── BarClosing.mqh │ ├── BarOpening.mqh │ ├── BarRange.mqh │ ├── BearsPower.mqh │ ├── BollingerBands.mqh │ ├── BullsBearsPower.mqh │ ├── BullsPower.mqh │ ├── CCIMAOscillator.mqh │ ├── CloseandReverse.mqh │ ├── CommodityChannelIndex.mqh │ ├── CumulativeSum.mqh │ ├── DayClosing.mqh │ ├── DayClosing2.mqh │ ├── DayOpening.mqh │ ├── DaysOfWeek.mqh │ ├── DeMarker.mqh │ ├── DetrendedOscillator.mqh │ ├── DirectionalIndicators.mqh │ ├── DonchianChannel.mqh │ ├── EaseofMovement.mqh │ ├── EnterOnce.mqh │ ├── EntryHour.mqh │ ├── EntryTime.mqh │ ├── Envelopes.mqh │ ├── ExitHour.mqh │ ├── FisherTransform.mqh │ ├── ForceIndex.mqh │ ├── Fractal.mqh │ ├── HeikenAshi.mqh │ ├── HourlyHighLow.mqh │ ├── IchimokuKinkoHyo.mqh │ ├── InsideBar.mqh │ ├── KeltnerChannel.mqh │ ├── LongOrShort.mqh │ ├── MACD.mqh │ ├── MACDHistogram.mqh │ ├── MAOscillator.mqh │ ├── MarketFacilitationIndex.mqh │ ├── Momentum.mqh │ ├── MomentumMAOscillator.mqh │ ├── MoneyFlow.mqh │ ├── MoneyFlowIndex.mqh │ ├── MovingAveragesCrossover.mqh │ ├── MovingAvrg.mqh │ ├── NBarsExit.mqh │ ├── NarrowRange.mqh │ ├── OBOSMAOscillator.mqh │ ├── OnBalanceVolume.mqh │ ├── OscillatorofATR.mqh │ ├── OscillatorofBBP.mqh │ ├── OscillatorofCCI.mqh │ ├── OscillatorofMACD.mqh │ ├── OscillatorofMomentum.mqh │ ├── OscillatorofOBOS.mqh │ ├── OscillatorofROC.mqh │ ├── OscillatorofRSI.mqh │ ├── OscillatorofTrix.mqh │ ├── OverboughtOversoldIndex.mqh │ ├── ParabolicSAR.mqh │ ├── PercentChange.mqh │ ├── PivotPoints.mqh │ ├── PreviousBarClosing.mqh │ ├── PreviousBarOpening.mqh │ ├── PreviousHighLow.mqh │ ├── PriceMove.mqh │ ├── PriceOscillator.mqh │ ├── ROCMAOscillator.mqh │ ├── RSI.mqh │ ├── RSIMAOscillator.mqh │ ├── RateofChange.mqh │ ├── RelativeVigorIndex.mqh │ ├── RossHook.mqh │ ├── RoundNumber.mqh │ ├── StandardDeviation.mqh │ ├── StarcBands.mqh │ ├── SteadyBands.mqh │ ├── Stochastics.mqh │ ├── StopLimit.mqh │ ├── StopLoss.mqh │ ├── TakeProfit.mqh │ ├── TopBottomPrice.mqh │ ├── TrailingStop.mqh │ ├── TrailingStopLimit.mqh │ ├── TrixIndex.mqh │ ├── TrixMAOscillator.mqh │ ├── WeekClosing.mqh │ ├── WeekClosing2.mqh │ └── WilliamsPercentRange.mqh ├── Logger.mqh ├── Position.mqh ├── Strategy.mqh ├── StrategyManager.mqh └── StrategyTrader.mqh └── README.md /Expert_version.txt: -------------------------------------------------------------------------------- 1 | 50 2 | -------------------------------------------------------------------------------- /FSB_Expert_MT4.mq4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/FSB_Expert_MT4.mq4 -------------------------------------------------------------------------------- /FSB_Expert_MT5.mq5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/FSB_Expert_MT5.mq5 -------------------------------------------------------------------------------- /Forexsb.com/ActionTrade4.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/ActionTrade4.mqh -------------------------------------------------------------------------------- /Forexsb.com/ActionTrade5.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/ActionTrade5.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/ChandeMomentumOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/ChandeMomentumOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/DayOfMonth.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/DayOfMonth.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/GatorOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/GatorOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/MomentumMT.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/MomentumMT.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/MovingAverageOfOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/MovingAverageOfOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/PercentBB.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/PercentBB.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/VidyaMovingAverage.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/VidyaMovingAverage.mqh -------------------------------------------------------------------------------- /Forexsb.com/Custom/Volumes.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Custom/Volumes.mqh -------------------------------------------------------------------------------- /Forexsb.com/DataMarket.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/DataMarket.mqh -------------------------------------------------------------------------------- /Forexsb.com/DataSet.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/DataSet.mqh -------------------------------------------------------------------------------- /Forexsb.com/Enumerations.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Enumerations.mqh -------------------------------------------------------------------------------- /Forexsb.com/HelperMq4.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/HelperMq4.mqh -------------------------------------------------------------------------------- /Forexsb.com/HelperMq5.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/HelperMq5.mqh -------------------------------------------------------------------------------- /Forexsb.com/Helpers.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Helpers.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicator.mqh -------------------------------------------------------------------------------- /Forexsb.com/IndicatorComp.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/IndicatorComp.mqh -------------------------------------------------------------------------------- /Forexsb.com/IndicatorManager.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/IndicatorManager.mqh -------------------------------------------------------------------------------- /Forexsb.com/IndicatorParam.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/IndicatorParam.mqh -------------------------------------------------------------------------------- /Forexsb.com/IndicatorSlot.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/IndicatorSlot.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/ADX.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/ADX.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/ATRMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/ATRMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/ATRStop.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/ATRStop.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/AcceleratorOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/AcceleratorOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/AccountPercentStop.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/AccountPercentStop.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/AccumulationDistribution.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/AccumulationDistribution.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/Alligator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/Alligator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/AroonHistogram.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/AroonHistogram.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/AverageTrueRange.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/AverageTrueRange.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/AwesomeOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/AwesomeOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BBPMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BBPMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BalanceofPower.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BalanceofPower.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BarClosing.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BarClosing.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BarOpening.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BarOpening.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BarRange.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BarRange.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BearsPower.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BearsPower.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BollingerBands.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BollingerBands.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BullsBearsPower.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BullsBearsPower.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/BullsPower.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/BullsPower.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/CCIMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/CCIMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/CloseandReverse.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/CloseandReverse.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/CommodityChannelIndex.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/CommodityChannelIndex.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/CumulativeSum.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/CumulativeSum.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DayClosing.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DayClosing.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DayClosing2.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DayClosing2.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DayOpening.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DayOpening.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DaysOfWeek.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DaysOfWeek.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DeMarker.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DeMarker.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DetrendedOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DetrendedOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DirectionalIndicators.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DirectionalIndicators.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/DonchianChannel.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/DonchianChannel.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/EaseofMovement.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/EaseofMovement.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/EnterOnce.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/EnterOnce.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/EntryHour.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/EntryHour.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/EntryTime.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/EntryTime.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/Envelopes.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/Envelopes.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/ExitHour.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/ExitHour.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/FisherTransform.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/FisherTransform.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/ForceIndex.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/ForceIndex.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/Fractal.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/Fractal.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/HeikenAshi.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/HeikenAshi.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/HourlyHighLow.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/HourlyHighLow.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/IchimokuKinkoHyo.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/IchimokuKinkoHyo.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/InsideBar.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/InsideBar.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/KeltnerChannel.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/KeltnerChannel.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/LongOrShort.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/LongOrShort.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MACD.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MACD.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MACDHistogram.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MACDHistogram.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MarketFacilitationIndex.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MarketFacilitationIndex.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/Momentum.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/Momentum.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MomentumMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MomentumMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MoneyFlow.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MoneyFlow.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MoneyFlowIndex.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MoneyFlowIndex.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MovingAveragesCrossover.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MovingAveragesCrossover.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/MovingAvrg.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/MovingAvrg.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/NBarsExit.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/NBarsExit.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/NarrowRange.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/NarrowRange.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OBOSMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OBOSMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OnBalanceVolume.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OnBalanceVolume.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofATR.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofATR.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofBBP.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofBBP.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofCCI.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofCCI.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofMACD.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofMACD.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofMomentum.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofMomentum.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofOBOS.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofOBOS.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofROC.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofROC.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofRSI.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofRSI.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OscillatorofTrix.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OscillatorofTrix.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/OverboughtOversoldIndex.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/OverboughtOversoldIndex.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/ParabolicSAR.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/ParabolicSAR.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/PercentChange.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/PercentChange.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/PivotPoints.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/PivotPoints.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/PreviousBarClosing.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/PreviousBarClosing.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/PreviousBarOpening.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/PreviousBarOpening.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/PreviousHighLow.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/PreviousHighLow.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/PriceMove.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/PriceMove.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/PriceOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/PriceOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/ROCMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/ROCMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/RSI.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/RSI.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/RSIMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/RSIMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/RateofChange.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/RateofChange.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/RelativeVigorIndex.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/RelativeVigorIndex.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/RossHook.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/RossHook.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/RoundNumber.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/RoundNumber.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/StandardDeviation.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/StandardDeviation.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/StarcBands.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/StarcBands.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/SteadyBands.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/SteadyBands.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/Stochastics.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/Stochastics.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/StopLimit.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/StopLimit.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/StopLoss.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/StopLoss.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/TakeProfit.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/TakeProfit.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/TopBottomPrice.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/TopBottomPrice.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/TrailingStop.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/TrailingStop.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/TrailingStopLimit.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/TrailingStopLimit.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/TrixIndex.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/TrixIndex.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/TrixMAOscillator.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/TrixMAOscillator.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/WeekClosing.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/WeekClosing.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/WeekClosing2.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/WeekClosing2.mqh -------------------------------------------------------------------------------- /Forexsb.com/Indicators/WilliamsPercentRange.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Indicators/WilliamsPercentRange.mqh -------------------------------------------------------------------------------- /Forexsb.com/Logger.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Logger.mqh -------------------------------------------------------------------------------- /Forexsb.com/Position.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Position.mqh -------------------------------------------------------------------------------- /Forexsb.com/Strategy.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/Strategy.mqh -------------------------------------------------------------------------------- /Forexsb.com/StrategyManager.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/StrategyManager.mqh -------------------------------------------------------------------------------- /Forexsb.com/StrategyTrader.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/Forexsb.com/StrategyTrader.mqh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PopovMP/FSB_Expert_Advisor_Code/HEAD/README.md --------------------------------------------------------------------------------