▽1
●
v75 ●60ポイント ![]() |
http://www.vtsystems.com/resources/helps/0000/HTML_VTtrader_Help...
halvedLength:= if((ceiling(length/2) - (length/2) <= 0.5), ceiling(length/2), floor(length/2));
sqrRootLength:= if((ceiling(sqrt(length)) - sqrt(length) <= 0.5), ceiling(sqrt(length)), floor(sqrt(length)));
Value1:= 2 * mov(price,halvedLength,method);
Value2:= mov(price,length,method);
HMA:= mov((Value1-Value2),sqrRootLength,method);
ありがとうございます。