답변완료
수식전환 부탁요
다음 수식 변환부탁드립니다.
수식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
672
글번호 177863
지표
답변완료
키움 수식 변환 부탁드립니다.
아래와 같은 키움 수식을 예스랭귀지로 변경 부탁드립니다.
P1 = (A + AvgIf(가격 - A, -1, 0.0 )) - (D1 * StdevIf(가격 - A, -1, 0.0 ));
궁금한 부분은 AvgIf, Stdevif 부분 변경요청 드립니다.
A, 가격, D1은 변수입니다.
2024-03-24
718
글번호 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
893
글번호 177861
강조
답변완료
종목검색식 (변환) 요청 합니다.
비율1 65 비율2 50
조건=dayhigh()>daylow()*1.07;
고저폭=dayhigh()-daylow();
상단=valuewhen(1,조건,고저폭*비율1/100+daylow());
하단=valuewhen(1,조건,고저폭*비율2/100+daylow());
m5=ma(c,5);
저점5=m5>m5(1) && m5(1)<m5(2);
저점값=valuewhen(1,저점5,m5);
m20=ma(c,20);
m60=ma(c,60);
저점5 && c>0 && 저점값<상단 &&
저점값>하단 &&
(m5>m20 or m5>m60)
2024-03-24
1121
글번호 177855
종목검색