├── .gitignore ├── .vscode └── launch.json ├── FGMR ├── FGMR-StrategyReports-SPX.csv ├── FGMR.md ├── FGMR.txt ├── FGMR_Strat.txt ├── edit-studies-and-strategies-dialog.png ├── spx-strategy-and-study.pdn ├── spx-strategy-and-study.png └── strategy-report.png ├── FGMR_ADVANCED ├── FGMR_ADVANCED.md ├── FGMR_ADVANCED.png ├── FGMR_ADVANCED_Strategy.txt └── FGMR_ADVANCED_Study.txt ├── LICENSE ├── PowerShell ├── Get-StrategyReportCsvStatistics.ps1 └── PowerShell.md ├── README.md ├── SIERRA_CHART ├── SIERRA_CHART.md ├── kg_NewStudyTemplate.cpp └── kg_NewStudyTemplate.png ├── SOX_FGMR ├── SOX_FGMR.md ├── SOX_FGMR_Strat.txt └── sox-strategy-with-Floating-PL.png └── VIX_FGMR ├── VIX_FGMR.md └── VIX_FGMR.txt /.gitignore: -------------------------------------------------------------------------------- 1 | **/*.xlsx -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /FGMR/FGMR-StrategyReports-SPX.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/FGMR-StrategyReports-SPX.csv -------------------------------------------------------------------------------- /FGMR/FGMR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/FGMR.md -------------------------------------------------------------------------------- /FGMR/FGMR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/FGMR.txt -------------------------------------------------------------------------------- /FGMR/FGMR_Strat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/FGMR_Strat.txt -------------------------------------------------------------------------------- /FGMR/edit-studies-and-strategies-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/edit-studies-and-strategies-dialog.png -------------------------------------------------------------------------------- /FGMR/spx-strategy-and-study.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/spx-strategy-and-study.pdn -------------------------------------------------------------------------------- /FGMR/spx-strategy-and-study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/spx-strategy-and-study.png -------------------------------------------------------------------------------- /FGMR/strategy-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR/strategy-report.png -------------------------------------------------------------------------------- /FGMR_ADVANCED/FGMR_ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR_ADVANCED/FGMR_ADVANCED.md -------------------------------------------------------------------------------- /FGMR_ADVANCED/FGMR_ADVANCED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR_ADVANCED/FGMR_ADVANCED.png -------------------------------------------------------------------------------- /FGMR_ADVANCED/FGMR_ADVANCED_Strategy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR_ADVANCED/FGMR_ADVANCED_Strategy.txt -------------------------------------------------------------------------------- /FGMR_ADVANCED/FGMR_ADVANCED_Study.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/FGMR_ADVANCED/FGMR_ADVANCED_Study.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShell/Get-StrategyReportCsvStatistics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/PowerShell/Get-StrategyReportCsvStatistics.ps1 -------------------------------------------------------------------------------- /PowerShell/PowerShell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/PowerShell/PowerShell.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/README.md -------------------------------------------------------------------------------- /SIERRA_CHART/SIERRA_CHART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/SIERRA_CHART/SIERRA_CHART.md -------------------------------------------------------------------------------- /SIERRA_CHART/kg_NewStudyTemplate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/SIERRA_CHART/kg_NewStudyTemplate.cpp -------------------------------------------------------------------------------- /SIERRA_CHART/kg_NewStudyTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/SIERRA_CHART/kg_NewStudyTemplate.png -------------------------------------------------------------------------------- /SOX_FGMR/SOX_FGMR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/SOX_FGMR/SOX_FGMR.md -------------------------------------------------------------------------------- /SOX_FGMR/SOX_FGMR_Strat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/SOX_FGMR/SOX_FGMR_Strat.txt -------------------------------------------------------------------------------- /SOX_FGMR/sox-strategy-with-Floating-PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/SOX_FGMR/sox-strategy-with-Floating-PL.png -------------------------------------------------------------------------------- /VIX_FGMR/VIX_FGMR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/VIX_FGMR/VIX_FGMR.md -------------------------------------------------------------------------------- /VIX_FGMR/VIX_FGMR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/korygill/technical-analysis/HEAD/VIX_FGMR/VIX_FGMR.txt --------------------------------------------------------------------------------