Di Napoli and Fibonacci Objectives
Info
The Di Napoli and Fibonacci Objectives is a Indicator for MetaTrader 4 that this is a basic code for plotting di napoli and fibonacci objectives on a chart, providing fast and handy visualization of key levels. The blue lines represent averaged Fibonacci levels calculated from 0.
Usage
This tool is typically used for enhancing chart analysis and decision making.
Platform
This Indicator works exclusively on MetaTrader 4 (both build 600+ and newer versions).
Setup
Place the downloaded file in MQL4/Indicators folder via File ? Open Data Folder in MetaTrader 4.
How to Install and Use Di Napoli and Fibonacci Objectives
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
This is a basic code for plotting Di Napoli and Fibonacci objectives on a chart, providing fast and handy visualization of key levels.
Typical Use Case
This Indicator excels in automated trading and technical analysis on MetaTrader 4.
Compatible Platform & Setup
This Indicator works on MetaTrader 4. Place the file in the MQL4/Indicators folder and restart the terminal.
Description & Settings
Related: fibonacci support and resistance indicator - another powerful indicator for MetaTrader 4 traders.
This is a basic code for plotting Di Napoli and Fibonacci objectives on a chart, providing fast and handy visualization of key levels. The blue lines represent averaged Fibonacci levels calculated from 0.328, 0.500, and 0.618, corresponding to fractals specified by the user. The lighter color indicates nearest fractals, such as high/high and low/low. The Fibonacci nodes are averaged to eliminate excessive lines on the chart. The red, violet, pink, and brown lines represent Di Napoli targets, with lighter lines indicating COPs and darker lines indicating XOPs. The following parameters can be adjusted: - fracsfrombar: the number of bars from which the indicator calculates back fractals, with 0 meaning the current bar. - fibfractals01: the first and nearest range for fractals, specified by the number of bars. - fibfractals02: the second range for fractals. - fibfractals03: the third range for fractals. - fibfractals04: the fourth and wider range for fractals. - commentson: a boolean value to enable or disable short descriptions on the chart, which should be set to false if another indicator with comments is attached to the chart.Also recommended: dinapoli zz (zig zag) indicator - similar indicator with strong performance on MetaTrader 4.
You may also like: fibonacci confluence zone finder - multi-swing clusters - excellent alternative for indicator users on MetaTrader 4.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property indicator_chart_window
#define fibnode_01 0.328
#define fibnode_02 0.500
#define fibnode_03 0.618
#define fibnode_04 1.000
#define fibnode_06 1.328
#define fibnode_07 1.500
#define fibnode_08 1.618
.......
⚠ 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.