KT Asian Breakout indicator scans and analyzes a critical part of the Asian session to generate bi-directional buy and sell signals with the direction of a price breakout. A buy signal occurs when the price breaks above the session high, and a sell signal occurs when the price breaks below the session low.
// define arrays double Buy_Signal[]; double Sell_Signal[]; double Buy_Stoploss[]; double Sell_Stoploss[]; //define indicator handle int indicator_handle = iCustom(_Symbol,0,"Market/KT Asian Breakout Indicator"); // Copy buffer into arrays CopyBuffer(indicator_handle,0,1,1,Buy_Signal); CopyBuffer(indicator_handle,1,1,1,Sell_Signal); CopyBuffer(indicator_handle,2,1,1,Buy_Stoploss); CopyBuffer(indicator_handle,3,1,1,Sell_Stoploss ); if(Buy_Signal[0]!=0) // Entry condition for Buy if(Sell_Signal[0]!=0) // Entry condition for Sell Buy_SL[0]; // Buy Stoploss Sell_SL[0]; // Sell Stoploss // Fetching targets from the chart double Quick_Profit = NormalizeDouble(ObjectGetDouble(0,"KT_FTP",OBJPROP_PRICE),_Digits); double First_Target = NormalizeDouble(ObjectGetDouble(0,"KT_STP",OBJPROP_PRICE),_Digits); double Final_Target = NormalizeDouble(ObjectGetDouble(0,"KT_TTP",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@market-fx.pro.
Refund requests received more than 30 days after purchase will be rejected.