Login / Register
Add a review
Log in
Sign UP
[bws_google_captcha]

KT Momentum Arrows Indicator is based on a momentary breakout which is calculated using the bands deviation and emerging volatility in a certain direction.

A buy signal is generated when the price close above the upper band and a sell signal is generated when the price close below the lower band.

A magnitude coefficient is used as the input which affects the band deviation and volatility at the same time. The coefficient value should be carefully selected and analyzed based on the instrument and time frame.

MT5 version of the same indicator is available here KT Momentum Arrows MT5

MT5 version of the same indicator is available here KT Momentum Arrows MT5

  • No Repaint!
  • A great entry tool for momentum traders.
  • Performance analysis elements such as Win/Loss, Success rate, Avg. Profit etc.
  • Suitable for Day Traders, Swing Traders, and Scalpers.

Input Parameters

  • History Bars: Number of bars to use for indicator data calculation.
  • Magnitude Coefficient: A single coefficient to adjust the band deviation and volatility measurement.
  • Performance Analysis: Show/hide performance analysis including the profit trend lines. 
  • Alert Settings: Pop up, Email, Push notifications and Sound alerts are available.
  • Rest of the inputs are self-explanatory.

EA Developers

[spoiler title=”Read More…”]

  • History Bars: Number of bars to use for indicator data calculation.
  • Magnitude Coefficient: A single coefficient to adjust the band deviation and volatility measurement.
  • Performance Analysis: Show/hide performance analysis including the profit trend lines. 
  • Alert Settings: Pop up, Email, Push notifications and Sound alerts are available.
  • Rest of the inputs are self-explanatory.

EA Developers

double Buy_Signal;
double Sell_Signal;
double Upper_Band;
double Lower_Band;

Buy_Signal  = iCustom(NULL,0,"Market/KT Momentum Arrows",0,1);
Sell_Signal = iCustom(NULL,0,"Market/KT Momentum Arrows",1,1);
Upper_Band  = iCustom(NULL,0,"Market/KT Momentum Arrows",2,1);
Lower Band  = iCustom(NULL,0,"Market/KT Momentum Arrows",3,1);

// Detecting the buy/sell signals

If(Buy_Signal!=0)
 {
  // Do something with buy condition 
 }

if(Sell_Signal!=0)
 {
  // Do something with sell condition
 }

[/spoiler]

Add review
Reviews ( 0 ):