├── .gitignore ├── README.md ├── angle_norm_comparison.py ├── angle_variation.py ├── compare_ma.py ├── curve_fitting_comparison.py ├── gen_syntheticdata.py ├── parabolic_sar.py ├── structural_break.py ├── support_resistance_analysis.py └── sutte_indicator_example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/README.md -------------------------------------------------------------------------------- /angle_norm_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/angle_norm_comparison.py -------------------------------------------------------------------------------- /angle_variation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/angle_variation.py -------------------------------------------------------------------------------- /compare_ma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/compare_ma.py -------------------------------------------------------------------------------- /curve_fitting_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/curve_fitting_comparison.py -------------------------------------------------------------------------------- /gen_syntheticdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/gen_syntheticdata.py -------------------------------------------------------------------------------- /parabolic_sar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/parabolic_sar.py -------------------------------------------------------------------------------- /structural_break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/structural_break.py -------------------------------------------------------------------------------- /support_resistance_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/support_resistance_analysis.py -------------------------------------------------------------------------------- /sutte_indicator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tg12/2024-trading-automation-scripts/HEAD/sutte_indicator_example.py --------------------------------------------------------------------------------