ACB Trade Filter MT5
- 지표
-
KEENBASE SOFTWARE SOLUTIONS
Keenbase Trading은 트레이더가 더욱 정확하고 신뢰할 수 있는 거래 결정을 내릴 수 있도록 MetaTrader 4 및 MetaTrader 5용 전문 지표와 Expert Advisor(EA)를 개발합니다.
당사의 제품은 실전에서 활용할 수 있는 거래 로직과 직관적인 사용자 경험을 결합하여 안정성, 사용 편의성, 그리고 체계적인 리스크 관리에 중점을 두고 설계되었습니다. 모든 도구는 철저한 테스트를 거쳐 실제 시장 환경에서도 일관되고 안정적인 성능을 제공할 수 있도록 개발됩니다. - 버전: 1.5
- 업데이트됨: 17 2월 2022
- 활성화: 10
ACB Trade Filter indicator provides a way to filtering out the low probability trading entries in a trading strategy. The indicator uses a sophisticated filtration algorithm based on the market sentiment and trend. The MT4 version of the same indicator is available here ACB Trade Filter MT4
Applications
- Works great with our indicator ACB Breakout Arrows MT5
- Filter out low probability signals from any indicator.
- Avoid over-trading and minimize the losses.
- Trade in the direction of market sentiment and trend.
- Avoid the choppiness in the market.
How to use
- Only Long Positions 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.
- Rest of the inputs are self-explanatory.
For EA developers
// Define Arrays double Green_Histogram[]; double Red_Histogram[]; double Gray_Histogram[]; double Trend_Direction[]; // Define indicator handle int Trade_Filter_Handle = iCustom(Symbol(),PERIOD_CURRENT,"Market/ACB Trade Filter"); // Copy buffer into arrays ArraySetAsSeries(Green_Histogram,true); ArraySetAsSeries(Red_Histogram,true); ArraySetAsSeries(Gray_Histogram,true); ArraySetAsSeries(Trend_Direction,true); CopyBuffer(Trade_Filter_Handle,0,1,1,Green_Histogram); CopyBuffer(Trade_Filter_Handle,1,1,1,Red_Histogram); CopyBuffer(Trade_Filter_Handle,2,1,1,Gray_Histogram); CopyBuffer(Trade_Filter_Handle,3,1,1,Trend_Direction); // Reading Histogram color if(Green_Histogram[0]==1.5) // Histogram is green if(Red_Histogram[0]==1.5) // Histogram is red if(Gray_Histogram[0]==1.5) // Histogram is gray // Reading trend direction if(Trend_Direction[0]==1) // Trend is bullish if(Trend_Direction[0]==-1) // Trend is bearish if(Trend_Direction[0]==0) // Trend is sideway
