├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── code_blocks ├── check-lrma │ ├── check-lrma.cbp │ └── main.cpp ├── check-rshillma │ ├── check-rshillma.cbp │ └── main.cpp ├── check-td │ ├── check-td.cbp │ └── main.cpp ├── check_bb │ ├── check_bb.cbp │ └── main.cpp ├── check_crsi │ ├── check_crsi.cbp │ └── main.cpp ├── check_delay_line │ ├── check_delay_line.cbp │ └── main.cpp ├── check_fft │ ├── check_fft.cbp │ └── main.cpp ├── check_indicators │ ├── check_indicators.cbp │ └── main.cpp ├── check_maz │ ├── check_maz.cbp │ └── main.cpp ├── check_min_max │ ├── check_min_max.cbp │ └── main.cpp ├── check_min_max_difference │ ├── check_min_max_difference.cbp │ └── main.cpp ├── check_pri │ ├── check_pri.cbp │ └── main.cpp ├── check_sma │ ├── check_sma.cbp │ └── main.cpp ├── check_stochastics │ ├── check_stochastics.cbp │ └── main.cpp ├── check_sum │ ├── check_sum.cbp │ └── main.cpp ├── check_zscore │ ├── check_zscore.cbp │ └── main.cpp ├── checking_circular_buffer │ ├── checking_circular_buffer.cbp │ └── main.cpp ├── checking_delay_measurement │ ├── checking_delay_measurement.cbp │ └── main.cpp ├── checking_least_square_method │ ├── checking_least_square_method.cbp │ └── main.cpp ├── checking_normalization │ ├── checking_normalization.cbp │ └── main.cpp ├── checking_statistical_indicators │ ├── checking_statistical_indicators.cbp │ └── main.cpp ├── checking_statistics │ ├── checking_statistics.cbp │ └── main.cpp ├── cmp_min_max_witch_streaming_min_max │ ├── cmp_min_max_witch_streaming_min_max.cbp │ └── main.cpp └── test │ ├── atr.cpp │ ├── body_filter.cpp │ ├── cci.cpp │ ├── cluster_shaper.cpp │ ├── fractals.cpp │ ├── period_stats.cpp │ ├── ssa.cpp │ ├── super_trend.cpp │ ├── test.cbp │ └── trend_direction_force_index.cpp ├── doc └── example_0.png └── include ├── backtest └── xtechnical_winrate_statistics.hpp ├── indicators ├── ssa.hpp ├── xtechnical_atr.hpp ├── xtechnical_awesome_oscillator.hpp ├── xtechnical_body_filter.hpp ├── xtechnical_cci.hpp ├── xtechnical_cluster_shaper.hpp ├── xtechnical_crsi.hpp ├── xtechnical_delay_line.hpp ├── xtechnical_fast_min_max.hpp ├── xtechnical_fisher.hpp ├── xtechnical_fractals.hpp ├── xtechnical_fractals_level.hpp ├── xtechnical_period_stats.hpp ├── xtechnical_rsi.hpp ├── xtechnical_sma.hpp ├── xtechnical_super_trend.hpp └── xtechnical_true_range.hpp ├── math ├── xtechnical_compare.hpp ├── xtechnical_ordinary_least_squares.hpp └── xtechnical_smoothing.hpp ├── xtechnical_circular_buffer.hpp ├── xtechnical_circular_buffer.mqh ├── xtechnical_common.hpp ├── xtechnical_correlation.hpp ├── xtechnical_delay_meter.hpp ├── xtechnical_dft.hpp ├── xtechnical_indicators.hpp ├── xtechnical_moving_window.hpp ├── xtechnical_normalization.hpp ├── xtechnical_regression_analysis.hpp ├── xtechnical_sma.mqh ├── xtechnical_statistics.hpp └── xtechnical_streaming_min_max.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/README.md -------------------------------------------------------------------------------- /code_blocks/check-lrma/check-lrma.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check-lrma/check-lrma.cbp -------------------------------------------------------------------------------- /code_blocks/check-lrma/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check-lrma/main.cpp -------------------------------------------------------------------------------- /code_blocks/check-rshillma/check-rshillma.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check-rshillma/check-rshillma.cbp -------------------------------------------------------------------------------- /code_blocks/check-rshillma/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check-rshillma/main.cpp -------------------------------------------------------------------------------- /code_blocks/check-td/check-td.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check-td/check-td.cbp -------------------------------------------------------------------------------- /code_blocks/check-td/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check-td/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_bb/check_bb.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_bb/check_bb.cbp -------------------------------------------------------------------------------- /code_blocks/check_bb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_bb/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_crsi/check_crsi.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_crsi/check_crsi.cbp -------------------------------------------------------------------------------- /code_blocks/check_crsi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_crsi/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_delay_line/check_delay_line.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_delay_line/check_delay_line.cbp -------------------------------------------------------------------------------- /code_blocks/check_delay_line/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_delay_line/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_fft/check_fft.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_fft/check_fft.cbp -------------------------------------------------------------------------------- /code_blocks/check_fft/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_fft/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_indicators/check_indicators.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_indicators/check_indicators.cbp -------------------------------------------------------------------------------- /code_blocks/check_indicators/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_indicators/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_maz/check_maz.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_maz/check_maz.cbp -------------------------------------------------------------------------------- /code_blocks/check_maz/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_maz/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_min_max/check_min_max.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_min_max/check_min_max.cbp -------------------------------------------------------------------------------- /code_blocks/check_min_max/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_min_max/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_min_max_difference/check_min_max_difference.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_min_max_difference/check_min_max_difference.cbp -------------------------------------------------------------------------------- /code_blocks/check_min_max_difference/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_min_max_difference/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_pri/check_pri.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_pri/check_pri.cbp -------------------------------------------------------------------------------- /code_blocks/check_pri/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_pri/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_sma/check_sma.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_sma/check_sma.cbp -------------------------------------------------------------------------------- /code_blocks/check_sma/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_sma/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_stochastics/check_stochastics.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_stochastics/check_stochastics.cbp -------------------------------------------------------------------------------- /code_blocks/check_stochastics/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_stochastics/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_sum/check_sum.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_sum/check_sum.cbp -------------------------------------------------------------------------------- /code_blocks/check_sum/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_sum/main.cpp -------------------------------------------------------------------------------- /code_blocks/check_zscore/check_zscore.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_zscore/check_zscore.cbp -------------------------------------------------------------------------------- /code_blocks/check_zscore/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/check_zscore/main.cpp -------------------------------------------------------------------------------- /code_blocks/checking_circular_buffer/checking_circular_buffer.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_circular_buffer/checking_circular_buffer.cbp -------------------------------------------------------------------------------- /code_blocks/checking_circular_buffer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_circular_buffer/main.cpp -------------------------------------------------------------------------------- /code_blocks/checking_delay_measurement/checking_delay_measurement.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_delay_measurement/checking_delay_measurement.cbp -------------------------------------------------------------------------------- /code_blocks/checking_delay_measurement/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_delay_measurement/main.cpp -------------------------------------------------------------------------------- /code_blocks/checking_least_square_method/checking_least_square_method.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_least_square_method/checking_least_square_method.cbp -------------------------------------------------------------------------------- /code_blocks/checking_least_square_method/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_least_square_method/main.cpp -------------------------------------------------------------------------------- /code_blocks/checking_normalization/checking_normalization.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_normalization/checking_normalization.cbp -------------------------------------------------------------------------------- /code_blocks/checking_normalization/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_normalization/main.cpp -------------------------------------------------------------------------------- /code_blocks/checking_statistical_indicators/checking_statistical_indicators.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_statistical_indicators/checking_statistical_indicators.cbp -------------------------------------------------------------------------------- /code_blocks/checking_statistical_indicators/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_statistical_indicators/main.cpp -------------------------------------------------------------------------------- /code_blocks/checking_statistics/checking_statistics.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_statistics/checking_statistics.cbp -------------------------------------------------------------------------------- /code_blocks/checking_statistics/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/checking_statistics/main.cpp -------------------------------------------------------------------------------- /code_blocks/cmp_min_max_witch_streaming_min_max/cmp_min_max_witch_streaming_min_max.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/cmp_min_max_witch_streaming_min_max/cmp_min_max_witch_streaming_min_max.cbp -------------------------------------------------------------------------------- /code_blocks/cmp_min_max_witch_streaming_min_max/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/cmp_min_max_witch_streaming_min_max/main.cpp -------------------------------------------------------------------------------- /code_blocks/test/atr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/atr.cpp -------------------------------------------------------------------------------- /code_blocks/test/body_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/body_filter.cpp -------------------------------------------------------------------------------- /code_blocks/test/cci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/cci.cpp -------------------------------------------------------------------------------- /code_blocks/test/cluster_shaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/cluster_shaper.cpp -------------------------------------------------------------------------------- /code_blocks/test/fractals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/fractals.cpp -------------------------------------------------------------------------------- /code_blocks/test/period_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/period_stats.cpp -------------------------------------------------------------------------------- /code_blocks/test/ssa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/ssa.cpp -------------------------------------------------------------------------------- /code_blocks/test/super_trend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/super_trend.cpp -------------------------------------------------------------------------------- /code_blocks/test/test.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/test.cbp -------------------------------------------------------------------------------- /code_blocks/test/trend_direction_force_index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/code_blocks/test/trend_direction_force_index.cpp -------------------------------------------------------------------------------- /doc/example_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/doc/example_0.png -------------------------------------------------------------------------------- /include/backtest/xtechnical_winrate_statistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/backtest/xtechnical_winrate_statistics.hpp -------------------------------------------------------------------------------- /include/indicators/ssa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/ssa.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_atr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_atr.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_awesome_oscillator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_awesome_oscillator.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_body_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_body_filter.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_cci.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_cci.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_cluster_shaper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_cluster_shaper.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_crsi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_crsi.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_delay_line.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_delay_line.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_fast_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_fast_min_max.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_fisher.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_fisher.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_fractals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_fractals.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_fractals_level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_fractals_level.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_period_stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_period_stats.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_rsi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_rsi.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_sma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_sma.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_super_trend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_super_trend.hpp -------------------------------------------------------------------------------- /include/indicators/xtechnical_true_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/indicators/xtechnical_true_range.hpp -------------------------------------------------------------------------------- /include/math/xtechnical_compare.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/math/xtechnical_compare.hpp -------------------------------------------------------------------------------- /include/math/xtechnical_ordinary_least_squares.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/math/xtechnical_ordinary_least_squares.hpp -------------------------------------------------------------------------------- /include/math/xtechnical_smoothing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/math/xtechnical_smoothing.hpp -------------------------------------------------------------------------------- /include/xtechnical_circular_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_circular_buffer.hpp -------------------------------------------------------------------------------- /include/xtechnical_circular_buffer.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_circular_buffer.mqh -------------------------------------------------------------------------------- /include/xtechnical_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_common.hpp -------------------------------------------------------------------------------- /include/xtechnical_correlation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_correlation.hpp -------------------------------------------------------------------------------- /include/xtechnical_delay_meter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_delay_meter.hpp -------------------------------------------------------------------------------- /include/xtechnical_dft.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_dft.hpp -------------------------------------------------------------------------------- /include/xtechnical_indicators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_indicators.hpp -------------------------------------------------------------------------------- /include/xtechnical_moving_window.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_moving_window.hpp -------------------------------------------------------------------------------- /include/xtechnical_normalization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_normalization.hpp -------------------------------------------------------------------------------- /include/xtechnical_regression_analysis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_regression_analysis.hpp -------------------------------------------------------------------------------- /include/xtechnical_sma.mqh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_sma.mqh -------------------------------------------------------------------------------- /include/xtechnical_statistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_statistics.hpp -------------------------------------------------------------------------------- /include/xtechnical_streaming_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NewYaroslav/xtechnical_analysis/HEAD/include/xtechnical_streaming_min_max.hpp --------------------------------------------------------------------------------