답변완료
예스트레이더 종목검색으로 요청합니다^^*
먼저 항상 친절한 답변주셔서 너무나 감사합니다..
아래 수식은 키움에서 작성한 수식입니다.
이것을 예스트레이더 종목검색으로 요청합니다..
일봉조건이고 지표변수는
shortperiod : 9
midperiod : 26
longperiod : 52
입니다...
========================================================================
A=Shift((highest(high,shortPeriod)
+lowest(low,shortPeriod)+
highest(high,midPeriod)
+lowest(low,midPeriod))/4,
midperiod-1);
B=shift((highest(high,longPeriod)+
lowest(low,longPeriod))/2,
midperiod-1);
crossup(c,max(A,B))
2025-08-12
141
글번호 193166
종목검색
답변완료
검색과 강조 수식
아래 조건식 2개를 차트에 표시하고 싶습니다. (영웅문의 신호검색 에 해당)
검색과 강조로 수식 부탁드립니다.
~~~~~~~~~~~~~~~~~~~~~~~
조검검색식1)
emaValue = eavg(C, 15);
correction = C + (C - emaValue);
zlma = eavg(correction, 15);
a1 = crossup( zlma , emaValue) and o < c and 거래대금 > 10000 ;
a2 = o*1.005 < h and o >= c and c(1) >c ;
a3 = o(1)*1.005 > h(1) and o*1.005 < h and o >= c and c(2) > c ;
a4 = o(1) < c(1) and o*1.005 < h and o >= c and c(2) > c ;
a5 = ma(c,20);
b1 = a1(1) and a2 and a5-a5(1)>0;
b2 = a1(2) and a3 and a5(1)-a5(2)>0 ;
b3 = a1(2) and a4 and a5(1)-a5(2)>0 ;
b1 or b2 or b3
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
조건검색식 2)
emaValue = eavg(C, 15);
correction = C + (C - emaValue);
zlma = eavg(correction, 15);
A=VALUEWHEN (1,(CROSSUP(ZLMA,emaValue) or CROSSDOWN(ZLMA,emaValue)),zlma ) ;
a1= Crossup(low, A) and emaValue < zlma and c > o;
a2 = crossup(zlma,emavalue) ;
a1 and a2 and 거래대금 >10000
2025-08-11
138
글번호 193165
검색
답변완료
해외선물 정규장 초기 15분 또는 30분간의 최고, 최저 구하고, 다음날 청산 방법
CME 해외선물의 정규장 초기 구간(10분 또는 30분)을 채널 기준으로 삼고자 합니다.
한국시간으로 대략 22:30 (서머타임시) 또는 23:30 부터 시작입니다.
1분봉, 5분봉, 30분봉 등의 차트에서
22:30 부터 15분간의 최고, 최저 가격을 각각 HH, LL 변수에 할당하는 방법이 궁금합니다.
또한 그 다음날 아침 8:00 에 SetStopEndofday() 하는 방법도 궁금합니다.
아래 시스템식은 수식작성 예제의 "30MBO 전략"을 참조한 것입니다.
[시스템식]
var : HH(0),LL(0);
if stime >= 223000 and stime < 2245000 Then{
HH ??
LL ??
}
if stime >= 224500 and stime < 74500 and crossup(c,HH) then
buy();
if stime >= 224500 and stime < 74500 and CrossDown(c,LL) then
sell();
SetStopEndofday(80000);
감사합니다.
2025-08-11
128
글번호 193163
시스템