identify potential entries
Info
The identify potential entries is a Indicator for MetaTrader 5 that introduction: i want to share with you this story. when i started trading, i learnt the scalping strategy in a volatile market.
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 identify potential entries
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
introduction: i want to share with you this story.
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: MA Gauge Pro - AKM: Unlocking Market Adaptability and Maximizing Trading Potential - another powerful indicator for MetaTrader 5 traders.
Also recommended: gold fvg finder: identifying and trading market imbalances - similar indicator with strong performance on MetaTrader 5.
introduction:i want to share with you this story. when i started trading, i learnt the scalping strategy in a volatile market. i really loved scalping especially when i see the price is moving fast. however, scalping for a long period of time is exhausting to me especially in a volatile market; volatile market requires fast analysis, actions and reactions; that is why i always reach a point that i loss concentration, focus and i start making those really stupid mistakes.
that is why i created this indicator that helped me to automatically identify these potential entries (based on the formation of candlesticks) instead of doing all the work myself. i know there are plenty of metatraders who also suffer from this and that is why i would like to share this indicator with you, hopefully it will be beneficial.
live trading session:
you can check the following live trading session on 25 august 2020 and see how i was use my tools in my trading
you can check the below videos:
do not forget to send you comments as well as rate these scripts. happy trading!
this indicator:
* has one input that will allow you to specify if you want to identify potential entries on bullish or bearish trends (i.e. it is up to you to choose bullish trend or bearish trend).
* if you choose bullish trend, this indicator will identify potential bullish entries based on the formation of these candlesticks:
bullish hammer (ham),
inverted hammer (ivh),
bullish engulfing (eng),
bullish harami (har),
morning start (mos) and
bullish building momentum
* if you choose bearish trend, this indicator will identify potential bearish entries based on the formation of these candlesticks :
shooting star (shs),
hanging man (hgm),
bearish engulfing (eng),
bearish harami (har),
evening start (evs) and
bearish building momentum)
You may also like: identify potential trends/range (pivot points) + entry points - excellent alternative for indicator users on MetaTrader 5.
Source Code
#property copyright "robotfx"
#property link "https://robotfx.org"
#property version "1.00"
#property indicator_chart_window
#include <candlestick.mqh> // candlesticks ohlc, charateristics & type
#include <onnewbarcalculate.mqh>
enum itrend{
a1 = 1, //bullish trend
a2 = 2, //bearish trend
};
.......
⚠ 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.