├── MgFx.History ├── CsvLoader │ ├── DateFormat.cs │ ├── FileFormat.cs │ └── RegexFormats.cs ├── Metadata.cs ├── MgFx.History.csproj ├── Mt5Loader │ ├── Mt5Header.cs │ └── Mt5PriceQuote.cs ├── Price.cs ├── Properties │ └── AssemblyInfo.cs ├── Settings.StyleCop ├── TimeSeries.cs └── packages.config ├── MgFx.Indicators.sln ├── MgFx.Indicators ├── ATR.cs ├── ATRP.cs ├── Ac.cs ├── Adx.cs ├── Ao.cs ├── BOP.cs ├── BearsPower.cs ├── BullsPower.cs ├── COG.cs ├── DmiMinus.cs ├── DmiPlus.cs ├── Ema.cs ├── Extensions.cs ├── FIR.cs ├── Highest.cs ├── IIR.cs ├── Indicator.cs ├── LWMA.cs ├── Lowest.cs ├── MgFx.Indicators.csproj ├── Momentum.cs ├── Properties │ └── AssemblyInfo.cs ├── Rsi.cs ├── Settings.StyleCop ├── Sma.cs ├── Trix.cs ├── Wpr.cs └── packages.config └── README.md /MgFx.History/CsvLoader/DateFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/CsvLoader/DateFormat.cs -------------------------------------------------------------------------------- /MgFx.History/CsvLoader/FileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/CsvLoader/FileFormat.cs -------------------------------------------------------------------------------- /MgFx.History/CsvLoader/RegexFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/CsvLoader/RegexFormats.cs -------------------------------------------------------------------------------- /MgFx.History/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/Metadata.cs -------------------------------------------------------------------------------- /MgFx.History/MgFx.History.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/MgFx.History.csproj -------------------------------------------------------------------------------- /MgFx.History/Mt5Loader/Mt5Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/Mt5Loader/Mt5Header.cs -------------------------------------------------------------------------------- /MgFx.History/Mt5Loader/Mt5PriceQuote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/Mt5Loader/Mt5PriceQuote.cs -------------------------------------------------------------------------------- /MgFx.History/Price.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/Price.cs -------------------------------------------------------------------------------- /MgFx.History/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MgFx.History/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/Settings.StyleCop -------------------------------------------------------------------------------- /MgFx.History/TimeSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/TimeSeries.cs -------------------------------------------------------------------------------- /MgFx.History/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.History/packages.config -------------------------------------------------------------------------------- /MgFx.Indicators.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators.sln -------------------------------------------------------------------------------- /MgFx.Indicators/ATR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/ATR.cs -------------------------------------------------------------------------------- /MgFx.Indicators/ATRP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/ATRP.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Ac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Ac.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Adx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Adx.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Ao.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Ao.cs -------------------------------------------------------------------------------- /MgFx.Indicators/BOP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/BOP.cs -------------------------------------------------------------------------------- /MgFx.Indicators/BearsPower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/BearsPower.cs -------------------------------------------------------------------------------- /MgFx.Indicators/BullsPower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/BullsPower.cs -------------------------------------------------------------------------------- /MgFx.Indicators/COG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/COG.cs -------------------------------------------------------------------------------- /MgFx.Indicators/DmiMinus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/DmiMinus.cs -------------------------------------------------------------------------------- /MgFx.Indicators/DmiPlus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/DmiPlus.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Ema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Ema.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Extensions.cs -------------------------------------------------------------------------------- /MgFx.Indicators/FIR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/FIR.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Highest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Highest.cs -------------------------------------------------------------------------------- /MgFx.Indicators/IIR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/IIR.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Indicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Indicator.cs -------------------------------------------------------------------------------- /MgFx.Indicators/LWMA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/LWMA.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Lowest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Lowest.cs -------------------------------------------------------------------------------- /MgFx.Indicators/MgFx.Indicators.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/MgFx.Indicators.csproj -------------------------------------------------------------------------------- /MgFx.Indicators/Momentum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Momentum.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Rsi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Rsi.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Settings.StyleCop -------------------------------------------------------------------------------- /MgFx.Indicators/Sma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Sma.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Trix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Trix.cs -------------------------------------------------------------------------------- /MgFx.Indicators/Wpr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/Wpr.cs -------------------------------------------------------------------------------- /MgFx.Indicators/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/MgFx.Indicators/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgfx/libindicators/HEAD/README.md --------------------------------------------------------------------------------