TradingView
everget
2018年9月30日晚上7點25分

Kaufman Adaptive Moving Average 

U.S. Dollar/Swiss FrancFXCM

描述

Kaufman Adaptive Moving Average script.

This indicator was originally developed by Perry J. Kaufman (`Smarter Trading: Improving Performance in Changing Markets`, 1995).

發布通知

Refactored

發布通知

  • Refactored
  • Added line coloring option

發布通知

  • Added color change alert
評論
Tech_Milind
Hi, Kaufman is a great indicator. It is works on all asset class. I am applying it on Index / Stocks & Commodities.
I do apply 200 EMA along with KAMA, it is indeed a deadly combination.
When the KAMA crosses 200 EMA from the downside to up, the price accelerate fast. And it gives excellent upward momentum.
That is, when the KAMA is below the 200 EMA. And when KAMA is above the 200 EMA, price gives fast downside momentum.
My humble request to you, if you can add 1 box of EMA in the input of KAMA indicator settings, it will be very help full.
One has to apply only 1 indicator on the chart.
Please check at your end.
Thank you. 👍
Milind.
(India)
romanowsky
@Tech_Milind, what length do you use for KAMA?
Tech_Milind
@romanowsky, My KAMA indicator by (Everget) setting is Length -14 / Fast EMA - 3 & Slow EMA length - 30.
All closing basis. 👍
romanowsky
@Tech_Milind, do you no longer use 200 EMA?
Tech_Milind
@romanowsky, Yes I am using with KAMA, but have to plot another EMA indicator. KAMA dont give you additional EMA. There is only 2 EMA settings in KAMA. Fast & Slow EMA.
romanowsky
@Tech_Milind, ah, I see what you're saying! I use KAMA by HPotter, and it only takes length as argument. I didn't know that KAMA by everget uses more parameters.
Tech_Milind
@romanowsky, Ok. I will have to check KAMA by HPotter.
romanowsky
@Tech_Milind, if you add the following 3 lines of code to the indicator's code, you will get the additional EMA that you want:

// adding EMA
emaLen = input(title="Add’l. EMA Length", type=input.integer, defval=200)
ema = ema(close, emaLen)
plot(ema, "EMA", color = color.yellow, transp = 0)
Tech_Milind
@romanowsky, Ok. I dont know if it is a private indicator or what. If its open source, then will try. Thank 👍
romanowsky
@Tech_Milind, it's clearly stated that it's open source. You can copy the code and create your personal indicator based on everget's code with the additional lines for the additional EMA.
更多