예스스탁
예스스탁 답변
2025-08-18 12:43:03
안녕하세요
예스스탁입니다.
1
var1 = ma(C,56);
var2 = ma(C,112);
var3 = ma(C,224);
var4 = ma(C,448);
if (var2 < var3 and var3 < var4) or
(var2 < var1 and var1 < var3) or
(var1 < var2 and var2 < var3) Then
Find(1);
2
input : AvgLen(17);
var : xClose(0),xOpen(0),xVolume(0),nVolAccum(0),nRes(0);
xClose = close;
xOpen = open;
xVolume = volume;
nVolAccum = AccumN(iff(xClose > xOpen, xVolume, iff(xClose < xOpen, -xVolume, 0)) ,AvgLen);
nRes = nVolAccum / AvgLen;
var1 = IfF(nRes>0,nRes,0);
if var1 > 0 Then
Find(1);
3
input : AvgLen(17),N(10);
var : xClose(0),xOpen(0),xVolume(0),nVolAccum(0),nRes(0);
xClose = close;
xOpen = open;
xVolume = volume;
nVolAccum = AccumN(iff(xClose > xOpen, xVolume, iff(xClose < xOpen, -xVolume, 0)) ,AvgLen);
nRes = nVolAccum / AvgLen;
var1 = IfF(nRes>0,nRes,0);
if CountIf( var1 > 0, N) >= 1 Then
Find(1);
즐거운 하루되세요
> 일지매7 님이 쓴 글입니다.
> 제목 : 검색식 부탁 드려요
> 1. 아래와 같은 지수이평 역배열 종목 검색식 부탁 드립니다.
3가지 종류 역배열을 "한개의 종목 검색식" (검색식1개)으로 부탁드려요.
단, 0봉전 ~ 10봉전 모든종목이 검색 되도록 해주세요.
<아래 ---------> 위> 지수이평 역배열
1) 112 224 448
2) 112 56 224
3) 56 112 224
2. 아래 수식을 참조하여,
수식1) 이 기준선 0 을 돌파하고, 기준선0 위에 있는 모든 종목 검색식
3. 아래 수식을 참조하여,
수식1) 이 기준선 0 을 돌파하고, 기준선0 위에 있을때 ,
0봉전 ~ 10봉전 의 모든 종목 검색식 부탁드립니다.
-------아래-------
수식1)
xClose = close;
xOpen = open;
xVolume = volume;
nVolAccum = SUM(if(xClose > xOpen, xVolume, if(xClose < xOpen, -xVolume, 0)) ,AvgLen);
nRes = nVolAccum / AvgLen;
IF(nRes>0,nRes,0)
수식2)
IF(nRes<0,nRes,0)
---
지표조건
AvgLen 17
기준선 0