The ACB Breakout Arrows indicator provides a crucial entry signal in the market by detecting a special breakout pattern. The indicator constantly scans the chart for a settling momentum in one direction and provide the accurate entry signal right before the major move.
Get multi-symbol and multi-timeframe scanner from here - Scanner for ACB Breakout Arrows MT5
- Use ACB Trade Filter indicator to filter out the low probability trades.
“The goal of a successful trader is to make the best trades. Money is secondary.” – Alexander Elder
// define array double Buy_Arrow[]; double Sell_Arrow[]; double Buy_SL[]; double Sell_SL[]; //define indicator handle int ACB_handle = iCustom(_Symbol,0,"Market/ACB Breakout Arrows"); // Copy buffers into arrays CopyBuffer(ACB_handle,0,1,1,Buy_Arrow); CopyBuffer(ACB_handle,1,1,1,Sell_Arrow); CopyBuffer(ACB_handle,2,1,1,Buy_SL); CopyBuffer(ACB_handle,3,1,1,Sell_SL); if(Buy_Arrow[0]!=0) // Entry condition for Buy if(Sell_Arrow[0]!=0) // Entry condition for Sell Buy_SL[0]; // Buy Stoploss Sell_SL[0]; // Sell Stoploss // Fetching targets from charts double Quick_Profit = NormalizeDouble(ObjectGetDouble(0,"FirstTarget",OBJPROP_PRICE),_Digits); double First_Target = NormalizeDouble(ObjectGetDouble(0,"Target1",OBJPROP_PRICE),_Digits); double Final_Target = NormalizeDouble(ObjectGetDouble(0,"Target2",OBJPROP_PRICE),_Digits);
If for any reason you do not like the purchased program, you can request a refund within 30 days from the date of purchase. You can also make an exchange for any other product at an equal cost or by paying the difference.
Simply send a request for refund or exchange with your order number by email: support@fx-market.pro.
Refund requests received more than 30 days after purchase will be rejected.