candle code
Info
The candle code is a Indicator for MetaTrader 5 that indicator candle_code displays in a separate window the "code" of candlesticks as lines built on the ratio of each candle's parameters. each parameter of one candlestick has its weight within the general view of its candle:candlestick body size; upper candlestick shadow size; lower candlestick shadow size; candle direction; a gap between the adjacent candlesticks (the current one and the previous one).
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 candle code
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
indicator candle_code displays in a separate window the "code" of candlesticks as lines built on the ratio of each candle's parameters.
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: Quantora Candle Strength Analyzer MT5: Price Action and Wick Analysis - another powerful indicator for MetaTrader 5 traders.
Also recommended: Quantora Candle Countdown MT5: Professional Real-Time Candle Timer - similar indicator with strong performance on MetaTrader 5.
indicator candle_code displays in a separate window the "code" of candlesticks as lines built on the ratio of each candle's parameters. each parameter of one candlestick has its weight within the general view of its candle:candlestick body size;
upper candlestick shadow size;
lower candlestick shadow size;
candle direction;
a gap between the adjacent candlesticks (the current one and the previous one).
if the parameter weight exceeds the doubled average range, the value of its weight will be assigned to it; if it does not, then its weight in the general candle view will be its weight multiplied by the parameter range and divided by its doubled average range.
then, on the data calculated for each candle, a moving average (weights data) will be built that displays in the chart the data of all candlesticks available within the history (displaying this line is disabled by default). then this line is smoothed to display the primary indicator line (primary ma). the secondary indicator line (secondary ma) is built by smoothing the primary one.
the indicator has 10 input parameters:
body size weight
- candlestick body weight;
upper shadow weight
- upper candle shadow weight;
lower shadow weight
- lower candle shadow weight;
candle direction weight
- candle direction (bullish/bearish) weight;
gap weight
- weight of the distance between the adjacent candles;
show weights data line
- whether to display the line of the general calculated weight data of each candlestick or no (yes/no);
first ma period
- period of calculating the first smoothing moving average to be calculated by the line of candlestick weights;
first ma method
- first moving average calculation method;
second ma period
- period of calculating the second smoothing moving average to be calculated by the data of the first ma;
second ma method
- second moving average calculation method.
exemplary calculations of the candlestick body weight:
if abs(open-close) >= avg(open-close)
bodysize = bodyweight
otherwise
bodysize = bodyweight * (abs(open-close)) / avg(open-close)
where:
fig 1. default weights.
fig. 2. candlestick direction weight = 512
figure 2. default weights, show data = yes
You may also like: Volume Strength Compass by Bhanu Code Lab - excellent alternative for indicator users on MetaTrader 5.
Source Code
/
.......
⚠ 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.