
동력 절대 가치 지표 전략은 투샤르 찬데가 개발한 동력 지표 CMO의 개선된 버전이다. 이 전략은 가격의 절대 동력 값을 계산하여 시장이 현재 과매도 또는 과매도 상태에 있는지 판단하여 시장의 중간 가격 변동을 포착한다.
이 전략의 핵심 지표는 개량된 CMO 지표인 AbsCMO이다. AbsCMO의 계산 공식은 다음과 같다.
AbsCMO = abs(100 * (最新收盘价 - Length周期前的收盘价) / (Length周期内价格波动绝对值的简单移动平均 * Length))
그 중, Length는 평균 기간의 길이를 나타냅니다. AbSCMO 값은 0에서 100까지입니다. 이 지표는 동력의 방향성과 강도의 monumentality를 결합하여 시장의 중기 추세와 과매매 영역을 명확하게 판단합니다.
AbsCMO 위가 지정된 상반도를 넘어서면 (설정된 70), 시장이 오버 바이를 걸고, 상반도를 다룹니다. AbsCMO 아래가 지정된 하반도를 넘어서면 (설정된 20), 시장이 오버 세일을 걸고, 상반도를 다룹니다.
다른 동력 지표에 비해 AbsCMO 지표는 다음과 같은 장점이 있습니다.
이 전략에는 다음과 같은 위험들이 있습니다.
포지션 주기를 적절히 줄이고, 매개 변수를 최적화하거나, 다른 지표와 함께 사용함으로써 위험을 줄일 수 있다.
이 전략은 다음과 같은 부분에서 최적화될 수 있습니다.
동력 절대 가치 지표 전략은 전체적으로 비교적 실용적인 중기 거래 전략이다. 가격의 중기 절대 동력 특성에 반응하여 시장의 중기 경향을 판단하는 판단력이 강하다. 그러나 이 전략은 단기간의 급격한 변동에 민감하지 않으며, 일정한 위험이 있다. 변수 최적화, 지표 필터링, 상쇄 메커니즘 등의 추가적인 개선을 통해 이 전략의 실장 성과를 더 안정적으로 신뢰할 수 있다.
/*backtest
start: 2023-02-12 00:00:00
end: 2024-02-18 00:00:00
period: 1d
basePeriod: 1h
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=2
////////////////////////////////////////////////////////////
// Copyright by HPotter v1.0 17/02/2017
// This indicator plots the absolute value of CMO. CMO was developed by Tushar
// Chande. A scientist, an inventor, and a respected trading system developer,
// Mr. Chande developed the CMO to capture what he calls "pure momentum". For
// more definitive information on the CMO and other indicators we recommend the
// book The New Technical Trader by Tushar Chande and Stanley Kroll.
// The CMO is closely related to, yet unique from, other momentum oriented indicators
// such as Relative Strength Index, Stochastic, Rate-of-Change, etc. It is most closely
// related to Welles Wilder`s RSI, yet it differs in several ways:
// - It uses data for both up days and down days in the numerator, thereby directly
// measuring momentum;
// - The calculations are applied on unsmoothed data. Therefore, short-term extreme
// movements in price are not hidden. Once calculated, smoothing can be applied to
// the CMO, if desired;
// - The scale is bounded between +100 and -100, thereby allowing you to clearly see
// changes in net momentum using the 0 level. The bounded scale also allows you to
// conveniently compare values across different securities.
//
// You can change long to short in the Input Settings
// Please, use it only for learning or paper trading. Do not for real trading.
////////////////////////////////////////////////////////////
strategy(title="CMOabs", shorttitle="CMOabs")
Length = input(9, minval=1)
TopBand = input(70, minval=1)
LowBand = input(20, minval=0)
reverse = input(false, title="Trade reverse")
// hline(0, color=gray, linestyle=dashed)
// hline(TopBand, color=red, linestyle=line)
// hline(LowBand, color=green, linestyle=line)
xMom = abs(close - close[1])
xSMA_mom = sma(xMom, Length)
xMomLength = close - close[Length]
nRes = abs(100 * (xMomLength / (xSMA_mom * Length)))
pos = iff(nRes > TopBand, -1,
iff(nRes < LowBand, 1, nz(pos[1], 0)))
possig = iff(reverse and pos == 1, -1,
iff(reverse and pos == -1, 1, pos))
if (possig == 1)
strategy.entry("Long", strategy.long)
if (possig == -1)
strategy.entry("Short", strategy.short)
barcolor(possig == -1 ? red: possig == 1 ? green : blue )
plot(nRes, color=blue, title="CMO")