답변완료
지표 변환 부탁드립니다.
a=avg(c,100);
b=((L+H+O+C)/4)*V/100000000;
m=sum(b);
K=m-valuewhen(1, CrossUp(c,a) or CrossDown(c,a), m(1));
if(c>=a, k, -k)
지표 변환 부탁드립니다.
2025-02-17
400
글번호 188195
지표
답변완료
항상 고맙습니다 수고하세요.
A1 = ma(c,2);
A2 = ma(c,120);
A3 = ma(c,240);
이격율 = A2 / A3 * 100 - 100;
조건 =
H > C(1) *1.15 &&
C > C(1)*1.1 &&
거래대금 >= 20000 &&
RSI(14) >= 70;
조건 &&
crossup(c, A2) && crossup(c, A3) &&
crossup(A1, A2) && crossup(A1, A3) &&
이격율 > -7 && 이격율 < 7;
S=sum(1);
M5=ma(c,기간1,지수);
M2=ma(c,기간2);
상전=M5>M5(1) && M5(1)<M5(2);
DC=valuewhen(1, crossdown(M5,M2), S);
상1=valuewhen(1, 상전, S);
상2=valuewhen(2, 상전, S);
상3=valuewhen(3, 상전, S);
GC=valuewhen(1, crossup(M5,M2),S);
조건W=상3<Dc && Dc<상2 && 상2<상1 && 상1<Gc &&
조건W && !조건W(1);
매집1=Crossup(h,BBandsUp(40,2));
매집2=CrossUP(MACD(9,52),0);
매집3=Crossup(MACD(9,52),eavg(MACD(9,52),26));
cs1=Crossup(Stochasticsslow(20,12),
eavg(Stochasticsslow(20,12),12));
cs2=crossup(cci(20),0);
최종=
매집1+매집2+매집3 >=2 or cs1+cs2 >=2 and
H > C(1)*1.30;
최종(-1)
기간1=5 기간2=20
2025-02-17
506
글번호 188194
종목검색
답변완료
지표 변환 문의
안녕하세요?
다른 시스템 로직에서 지표를 변환하다보니, 아래와 같이 하고 싶은데요. 안되어서.. 다 풀어서 써야 할 것 같은데, 혹시 예스에서 좀 더 편하게 할 수 있는 방법이 있을까요?
var1 = (sum( If(condition1 < 1, 1, 0), 10 ) = 10 ) and CrossUp(C, ma(c,10) and (C > O);
즉 질문이 2가지 인데요,
1) if처럼 조건문을 저 부분에 써서 1 or 0 값 반환하기
2) sum 함수를 써서 10봉의 컨디션 조건문의 합을 더하기
감사합니다.
2025-02-16
347
글번호 188191
지표
답변완료
종목검색부탁드립니다.
A=(C-BBandsDown(period,d1))/(BBandsUP(period,d1)-BBandsDown(period,d1))*100;
B=(C-BBandsDown(period1,d1))/(BBandsUP(period1,d1)-BBandsDown(period1,d1))*100;
Crossup(A,0) OR Crossup(B,0)
period 60
period1 120
d1 3
입니다! 종목검색수식부탁드립니다. 노고에 늘 감사드립니다.
2025-02-16
354
글번호 188189
종목검색
답변완료
수식 요 청
Inputs : Period(20), Sence(1.5), CC_DN(Yellow);
Vars:
VLineUp(0),
VLineDn(0),
HHighest(0),
LLowest(0),
JustChanged(FALSE),
VLine(0), DBN(0);
Array:
Highs[35](0),
Lows[35](0),
RRange[35](0),
UpWave[1](FALSE),
DnWave[1](FALSE);
If STime == 180000 Then
DBN = 0;
DBN = DBN + 1;
Var1 = Period;
Var2 = Var1 - 1;
Var3 = Var1 - 2;
Var5 = Sence;
Var6 = H-L;
JustChanged = FALSE;
if CurrentBar <= Var2 then begin
Highs[CurrentBar] = Close;
Lows[CurrentBar] = Close;
RRange[CurrentBar] = (H-L) /2;
end;
if CurrentBar == Var1 then begin
if Highs[Var2] >= Highs[Var3] then begin
UpWave[1] = TRUE;
HHighest = Highs[Var2];
VLineUp = HHighest - (Var5 * MA(Var6,Var2));
#Plot1(VLineUp,"VLineUp");
end;
if Highs[Var2] < Highs[Var3] then begin
DnWave[1] = TRUE;
LLowest = Lows[Var2];
VLineDn = LLowest + (Var5 * MA(Var6,Var2));
#Plot2(VLineDn,"VLineDn");
end;
end;
if CurrentBar > Var1 then begin
if DnWave[1] and Close > VLineDn then begin
DnWave[1] = FALSE;
UpWave[1] = TRUE;
JustChanged = TRUE;
HHighest = Close;
LLowest = 0;
end;
if UpWave[1] and Close < VLineUp and JustChanged == FALSE then begin
UpWave[1] = FALSE;
DnWave[1] = TRUE;
JustChanged = TRUE;
LLowest = Close;
HHighest = 0;
end;
if JustChanged == FALSE then begin
if Close > HHighest then
HHighest = Close;
else if Close < LLowest then
LLowest = Close;
end;
VLineUp = HHighest - (Var5 * MA(Var6,Var2));
VLineDn = LLowest + (Var5 * MA(Var6,Var2));
/*if UpWave[1] then Plot1(VLineUp,"VLineUp", Red);
else if DnWave[1] then Plot1(VLineDn,"VLineUp", Blue);
*/
end;
input : P(10),short(12),long(26),sig(9);
var : mav(0),macdo(0);
mav = ma(C,P);
MACDo = MACD_OSC(short,long,sig);
if upwave[1] and c > o and mav > mav[1] Then
Buy();
if dnwave[1] and c < o and mav < mav[1] Then
Sell();
if MarketPosition == 1 Then
{
if dnwave[1] and macdo < 0 Then
ExitLong("bx");
}
if MarketPosition == -1 Then
{
if upwave[1] and macdo > 0 Then
ExitLong("sx");
안녕하세요
위식에 수정 부탁드림니다.
기존식수정
매수 수정 sw2선 양선 발생후 선위에서 상승하다
하락하여 sw2 선을 터치나 하락후 재상승하여
sw2선위에 있을때 매수.
매도 수정 sw2선 음선 발생후 위에서 하락하다
상승하여 sw2 선을 터치나 상승후 재하락하여
sw2선아래에 있을때 매도
2025-02-17
328
글번호 188187
시스템