답변완료
수식전환 부탁요
다음 수식 변환부탁드립니다.
수식1
전=(highest(high,shortPeriod)+lowest(low,shortPeriod))/2;
수식2
기=(highest(high,midPeriod)+lowest(low,midPeriod))/2;
수식3
선1=shift((highest(high,shortPeriod)+lowest(low,shortPeriod)
+highest(high,midPeriod)+lowest(low,midPeriod))/4,midPeriod-1);
수식4
선2=shift((highest(high,longPeriod)+lowest(low,longPeriod))/2,midPeriod-1);
shortPeriod/9 midPeriod/26 longPeriod/52
2024-03-25
639
글번호 177863
지표
답변완료
키움 수식 변환 부탁드립니다.
아래와 같은 키움 수식을 예스랭귀지로 변경 부탁드립니다.
P1 = (A + AvgIf(가격 - A, -1, 0.0 )) - (D1 * StdevIf(가격 - A, -1, 0.0 ));
궁금한 부분은 AvgIf, Stdevif 부분 변경요청 드립니다.
A, 가격, D1은 변수입니다.
2024-03-24
690
글번호 177862
지표
답변완료
수식 검증 부탁드립니다
var : tx(0);
var1 = ma(C,5);
Var2 = ma(C,10);
Var3 = ma(C,20);
Var4 = ma(C,60);
Var5 = ma(C,120);
Var6 = ma(C,240);
if CrossUp(var1,Var2,Var3,Var4,Var5,Var6) Then
{
tx = text_new(sDate,sTime,L,"●");//"■"
Text_SetColor(tx,Yellow);
Text_SetSize(tx,20);
Text_SetStyle(tx,2,0);
}
2024-03-24
862
글번호 177861
강조