ACB Trade Filter MT4
- 指标
-
KEENBASE SOFTWARE SOLUTIONS
Keenbase Trading 致力于开发专业的 MetaTrader 4 和 MetaTrader 5 指标及智能交易系统(Expert Advisors),帮助全球交易者做出更加科学、更加理性的交易决策。
我们的产品将实用的交易逻辑与直观易用的设计相结合,重点关注稳定性、易用性以及完善的风险管理。每一款工具都经过严格测试,并针对真实市场环境进行优化,力求为交易者提供可靠且一致的使用体验。
无论您是手动交易者还是算法交易者,我们的目标都是提供能够简化市场分析、优化交易执行并提升交易信心的专业解决方案。 - 版本: 2.1
- 更新: 31 十月 2018
- 激活: 10
The ACB Trade Filter indicator provides a solution for filtering out the low probability trading setups in a trading strategy. The indicator uses a sophisticated filtration algorithm based on the market sentiment and trend.
Applications
- Works great with our indicator "ACB Breakout Arrows".
- Filter out low probability signals from any indicator.
- Avoid overtrading and minimize the losses.
- Trade in the direction of market sentiment and trend.
- Avoid the choppiness in the market.
How to use
- Only Long Trades if Histogram is green and Trend is bullish.
- Only Short Trades if Histogram is red and Trend is bearish.
- Avoid trading if the Histogram is gray or Trend is sideways.
Input Parameters
- History Bars: The no. of bars on the chart to consider for indicator's data and calculation.
- Filter mode: Normal filtration or Hard filtration.
- Trend Detector: Show/Hide the trend direction.
- Trend_Corner: Chart corner to display the trend direction.
For EA developers
Use the following code to import this indicator into your EA.
#define val 1.5 // Reading the histogram if(iCustom(NULL,0,"Market/ACB Trade Filter",0,1)==val) // Histogram is green if(iCustom(NULL,0,"Market/ACB Trade Filter",1,1)==val) // Histogram is red if(iCustom(NULL,0,"Market/ACB Trade Filter",2,1)==val) // Histogram is gray // Reading the trend direction if(iCustom(NULL,0,"Market/ACB Trade Filter",3,1)==1) // Trend is bullish if(iCustom(NULL,0,"Market/ACB Trade Filter",3,1)==-1) // Trend is Bearish if(iCustom(NULL,0,"Market/ACB Trade Filter",3,1)==0) // Trend is Sideways

A must have indicator to filter out bad signals from any entry indicator specially the ACB Breakout Arrows.