├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── LICENSE ├── Libs ├── Estimator.csproj ├── Estimators │ ├── CAGR │ │ ├── CAGR.cs │ │ └── README.md │ ├── Edge │ │ ├── EdgeRatio.cs │ │ └── README.md │ ├── Kestner │ │ ├── KestnerRatio.cs │ │ └── README.md │ ├── MAE │ │ ├── MAE.cs │ │ └── README.md │ ├── MFE │ │ ├── MFE.cs │ │ └── README.md │ ├── PF │ │ ├── PF.cs │ │ └── README.md │ ├── RAR │ │ ├── MAR.md │ │ ├── RAR.cs │ │ ├── README.md │ │ ├── Sharpe.md │ │ ├── Sortino.md │ │ └── Sterling.md │ ├── Regression │ │ ├── README.md │ │ └── Regression.cs │ └── StandardScore │ │ ├── README.md │ │ └── StandardScore.cs ├── Models │ ├── FrameScore.cs │ ├── Score.cs │ └── SeriesScore.cs └── Services │ ├── CointegrationService.cs │ └── OptionService.cs ├── README.md ├── Solution.sln └── Tests ├── RarTests.cs ├── StandardScoreTests.cs ├── Tests.csproj └── Usings.cs /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/LICENSE -------------------------------------------------------------------------------- /Libs/Estimator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimator.csproj -------------------------------------------------------------------------------- /Libs/Estimators/CAGR/CAGR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/CAGR/CAGR.cs -------------------------------------------------------------------------------- /Libs/Estimators/CAGR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/CAGR/README.md -------------------------------------------------------------------------------- /Libs/Estimators/Edge/EdgeRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/Edge/EdgeRatio.cs -------------------------------------------------------------------------------- /Libs/Estimators/Edge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/Edge/README.md -------------------------------------------------------------------------------- /Libs/Estimators/Kestner/KestnerRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/Kestner/KestnerRatio.cs -------------------------------------------------------------------------------- /Libs/Estimators/Kestner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/Kestner/README.md -------------------------------------------------------------------------------- /Libs/Estimators/MAE/MAE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/MAE/MAE.cs -------------------------------------------------------------------------------- /Libs/Estimators/MAE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/MAE/README.md -------------------------------------------------------------------------------- /Libs/Estimators/MFE/MFE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/MFE/MFE.cs -------------------------------------------------------------------------------- /Libs/Estimators/MFE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/MFE/README.md -------------------------------------------------------------------------------- /Libs/Estimators/PF/PF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/PF/PF.cs -------------------------------------------------------------------------------- /Libs/Estimators/PF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/PF/README.md -------------------------------------------------------------------------------- /Libs/Estimators/RAR/MAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/RAR/MAR.md -------------------------------------------------------------------------------- /Libs/Estimators/RAR/RAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/RAR/RAR.cs -------------------------------------------------------------------------------- /Libs/Estimators/RAR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/RAR/README.md -------------------------------------------------------------------------------- /Libs/Estimators/RAR/Sharpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/RAR/Sharpe.md -------------------------------------------------------------------------------- /Libs/Estimators/RAR/Sortino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/RAR/Sortino.md -------------------------------------------------------------------------------- /Libs/Estimators/RAR/Sterling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/RAR/Sterling.md -------------------------------------------------------------------------------- /Libs/Estimators/Regression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/Regression/README.md -------------------------------------------------------------------------------- /Libs/Estimators/Regression/Regression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/Regression/Regression.cs -------------------------------------------------------------------------------- /Libs/Estimators/StandardScore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/StandardScore/README.md -------------------------------------------------------------------------------- /Libs/Estimators/StandardScore/StandardScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Estimators/StandardScore/StandardScore.cs -------------------------------------------------------------------------------- /Libs/Models/FrameScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Models/FrameScore.cs -------------------------------------------------------------------------------- /Libs/Models/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Models/Score.cs -------------------------------------------------------------------------------- /Libs/Models/SeriesScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Models/SeriesScore.cs -------------------------------------------------------------------------------- /Libs/Services/CointegrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Services/CointegrationService.cs -------------------------------------------------------------------------------- /Libs/Services/OptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Libs/Services/OptionService.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/README.md -------------------------------------------------------------------------------- /Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Solution.sln -------------------------------------------------------------------------------- /Tests/RarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Tests/RarTests.cs -------------------------------------------------------------------------------- /Tests/StandardScoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Tests/StandardScoreTests.cs -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Indemos/Estimator/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /Tests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; --------------------------------------------------------------------------------