AggM 인디케이터
AggM는 복합 추세와 평균 - 복귀 나타내는 인디케이터입니다.
rank_long = PercentRank(10 period HLC, Close)
rank_short = 1 - PercentRank(200 period HLC, Close)
value = (rank_long + rank_short) / 2
AggM = (value[1] * 0.4)+(value[0] * 0.6)
Long above 0.7, Short below 0.2
코멘트 (0)