derivative
Info
The derivative is a Indicator for MetaTrader 5 that in mathematics, the value of the derivative is calculated according to the following simple formula:, (1)where:x0 — current value of the argument,x — value of the argument to the right of the chart,f(x0) — value of the function at point x0,f(x) — value of the function at point х. in the original definition the difference between x and x0 is infinitesimal, i.
Usage
This tool is typically used for enhancing chart analysis and decision making.
Platform
This Indicator works exclusively on MetaTrader 5 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL5/Indicators folder via File ? Open Data Folder in MetaTrader 5.
How to Install and Use derivative
1. Installation: Place your file in the MQL/Indicators folder via "Open Data Folder" and restart your terminal.
2. Loading: Find the indicator in the Navigator, drag it onto your chart, and configure the input parameters in the popup window.
3. Customization: Press Ctrl+I to open the indicator list, select your tool, and click "Properties" to change colors, levels, or visual styles.
4. Updating: Replace the old file in the Indicators folder with the new version and restart the platform to apply changes.
Frequently Asked Questions
Q: Why is my indicator not showing? A: Verify the file is in the MQL/Indicators folder, or try right-clicking the "Indicators" tree in the Navigator and clicking "Refresh."
Q: Do custom indicators slow down the platform? A: Too many complex indicators can impact performance; remove unused ones via the "Indicator List" (Ctrl+I).
Q: Can I use MT4 indicators on MT5? A: No, MQL4 and MQL5 are distinct languages; ensure the indicator is compiled specifically for your platform version.
What this tool does
in mathematics, the value of the derivative is calculated according to the following simple formula:, (1)where:x0 — current value of the argument,x — value of the argument to the right of the chart,f(x0) — value of the function at point x0,f(x) — value of the function at point х.
Typical Use Case
This Indicator excels in automated trading and technical analysis on MetaTrader 5.
Compatible Platform & Setup
This Indicator works on MetaTrader 5. Place the file in the MQL5/Indicators folder and restart the terminal.
Description & Settings
Related: derivative ht f - another powerful indicator for MetaTrader 5 traders.
in mathematics, the value of the derivative is calculated according to the following simple formula:
, (1)
where:
Also recommended: xderivative st dev - similar indicator with strong performance on MetaTrader 5.
x0 — current value of the argument,
x — value of the argument to the right of the chart,
f(x0) — value of the function at point x0,
f(x) — value of the function at point х.
in the original definition the difference between x and x0 is infinitesimal, i.e. the limit of the function is used. using the formula (1) it is possible to calculate the approximate value of the derivative using the fuction values, avoiding direct differentiation.
regarding the price chart, x0 is the current bar, and x is the upcoming bar, which will be formed after a number of chart periods. respectively, f(x0) is the price value on the current bar, and f(x) is the price value of the upcoming bar. we find that (1) contains two unknowns — f(x0) and f(x). since we do not have additional expressions which contain the same two unknowns, the solution of equation (1) in this case is absent.
known values must be taken as f(x) and f(x0) to make it possible to find the derivative f'(x0). for that purpose it is necessary to take a point to the left of the current bar as x0, and to designate the current bar as x. as a result, f(x0) and f(x) become certain values (prices at points x and x0 correspond to the price values visible on the chart).
although, the calculated value will characterize an area already known to a trader, in which the price growth or fall can be judged without the help of the derivative. in this case the useful information is not simply the value of the derivative, but the comparison of two values of the derivative at adjacent bars. in case the signs of the calculated values are different the price has passed an extremum. the type of the extremum can be easily determined using the combination of signs: transition from negative value to positive value is minimum, positive to negative — maximum.
the described principle of calculation of a derivative is implemented in the derivative indicator. as a result it displays the difference of prices between the examined bar and the bar spaced from the examined one by a number of bars set in the "delay" parameter.
the easiest way to use the indicator is this: the line crosses the zero level from below — you should buy, from above — you should sell.
originally this indicator has been written in mql4 and was first published in the on 09.09.2015.
fig.1. the derivative indicator
You may also like: xderivative st dev ht f - excellent alternative for indicator users on MetaTrader 5.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property version "1.01"
#property indicator_separate_window
#property indicator_buffers 1
#property indicator_plots 1
#property indicator_type1 draw_line
#property indicator_color1 clrcoral
#property indicator_style1 style_solid
#property indicator_width1 2
.......
⚠ Limitations & Risk Warning
- This tool is provided for educational and testing purposes only.
- Past performance does not guarantee future results.
- Trading involves substantial risk of loss. Use on a demo account first.
- Results may vary depending on market conditions, broker, and settings.
- We recommend thorough backtesting and forward testing before using with real funds.