Candle Analysis Report – script MetaTrader 5

Candle Analysis Report - script for MetaTrader 5
This script is designed to perform candle analysis: Data Retrieval: The script retrieves the open, close, high, and low prices of candles for the financial instrument it is running on. Candle Categorization: It categorizes each candle as bullish, bearish, or neutral based on the relationship between its closing and opening prices. Amplitude Calculation: It calculates … Read more

Analysis of the waves – indicator MetaTrader 4

Analysis of the waves - indicator for MetaTrader 4
The trend determination is based on ZigZag indicator. An each trend is marked with rectangle with different colors. The information about trend (h-size, v-average volume, s-speed in pips/hour) is displayed in the upper/lower corners. The current trend is considered from the beginning of the last rectangle. Image: The Advices: It’s possible to use this indicator … Read more

Market Flow Analysis Method (MFAM) Indicator for Price Action – indicator MetaTrader 4

Market Flow Analysis Method (MFAM) Indicator for Price Action - indicator for MetaTrader 4
Description: The concept comes from Market Flow Analysis Method (MFAM) mentioned on by Todd Mitchell (I have no relationship with this website nor Todd Mitchell) The program keeps track of Highest Highs (& Lowest Lows) and also whether there a trend change seems to be taking place. The bold Red & Green indicate the Highest … Read more

Regression Analysis – indicator MetaTrader 4

Regression Analysis - indicator for MetaTrader 4
Description: This indicator compares four types of regression (linear, quadratic, logarithmic and exponential) and chooses the one that best fits the data analyzed. This analysis is done every time there is a new tick. // —- inputs // dp_limiter  It should be >2 . If not it will be autoset to default value // endpos      Last value … Read more

Regression Analysis v2.0 – indicator MetaTrader 4

Regression Analysis v2.0 - indicator for MetaTrader 4
This indicator compares four types of regression (linear, quadratic, logarithmic and exponential) and chooses the one that best fits the data analyzed. This version: Fixed an error in calculating the standard deviation; Makes more use of the indicators of MQL4 standard library; Improved the functions of calculation of the regressions; Frees a buffer. It only … Read more

Regression Analysis – indicator MetaTrader 5

Regression Analysis
This indicator compares four types of regression (linear, quadratic, logarithmic and exponential) and chooses the one that best fits the data analyzed. This analysis is done every time there is a new tick. //— input parameters // dp_limiter  It should be >2 . If not it will be autoset to default value input ushort         dp_limiter  =100;    // … Read more

ALGLIB – Numerical Analysis Library – library MetaTrader 5

ALGLIB - Numerical Analysis Library - library for MetaTrader 5
Real author: Sergey Bochkanov. ALGLIB project website –  library dates back to 1999. ALGLIB is one of the largest and most complete mathematical libraries Do you need to make a fast Fourier transform or to solve a differential equation system? Do you perform a complex data analysis trying to gather all methods in one place … Read more

Regression Analysis Alert – indicator MetaTrader 5

Regression Analysis Alert Example
This Change Alert monitors barmenteros original indicator that compares four types of regression (linear, quadratic, logarithmic and exponential) and chooses the one that best fits the data analyzed. The idea is fast detect regression support and resistance breaks, to faster reaction and decision making. Changes are registered in Graph and Alert Panel as depicted above.  … Read more

ALGLIB – Numerical Analysis Library – library MetaTrader 4

Alglib test result
Real author: Sergey Bochkanov. ALGLIB project website – The library dates back to 1999. Note: The Expert Advisor works with MetaTrader 4 build 555 and higher. The archive must be unpacked to: terminal_data_folder. The codes of the library are located in terminal_data_folder\Math\Alglib\ Examples of test scripts are located in terminal_data_folder\MQL4\Scripts\Alglib\ ALGLIB is one of the … Read more

Script and Template for Market Analysis – script MetaTrader 5

Script and Template to make it easier to see the best time to go into the market.
If you apply the script to a new chart it will search the Templates directory for the _SoHarD_dB_wyuEz_.tpl file that I made (it contains all parameters for the script) and apply those to all other charts you’ve opened already. The script will project 6 Exponential Moving Averages on a Chinese candlestick chart, the same ones … Read more