답변완료
지표 변환 부탁드립니다.
키움수식인데 지표변환 부탁드립니다.
양=if(C>O,C,0);
양봉=if(C>O,1,0);
양양=sum(양);
양합=sum(양봉);
양조건=valuewhen(1,date!=date(1),양양(1));
양합조건=valuewhen(1,date!=date(1),양합(1));
조건=
(양양-양조건)!=0 && (양합-양합조건)!=0;
최종=if(조건,(양양-양조건)/(양합-양합조건),dayopen())
2025-01-24
483
글번호 187536
지표
답변완료
문의 드립니다.
안녕하세요 항상 감사드립니다.
아래의 서식에서
1.하루에 3번만 진입
2. 10분봉 기준 이격도 값이 100이상일때만 진입 (진입 신호시 이격도 값이 100이상일때만 진입합니다.)
바쁘시겠지만 부탁드립니다.
# KOSPI 선물 10분봉
input: tt(150000);
var: chkP(5), reChkP(10), stopChk(20);
var: HH(0), LL(0), BS(0), SS(0);
var: dayChk(0);
if BarIndex == 0 then ClearDebug();
if dayindex == chkP then {
HH = Highest(Max(C,O), chkP+1);
LL = Lowest(Min(C,O), chkP+1);
#if date == 20240612 then messageLog("--HH %.2f, LL: %.2f", HH, LL);
}
#if High >= HH and MarketPosition == 0 and ExitDate(1) < Date and time > 93000 then messageLog("HH %.2f, High: %.2f", HH, High);
if DayIndex >= chkP
# and Time < 95000
and sDate == NextBarSdate
and EntryDate(0) < Date
and EntryDate(1) < Date
Then {
Buy("B1", AtStop, HH);
Sell("S1", AtStop, LL);
}
//if dayChk == 0 and High >= HH and MarketPosition == 0 and ExitDate(1) < Date and time > 93000 then {
// messageLog("HH %.2f, High: %.2f", HH, High);
// dayChk = 1;
//}
if ExitDate(1) == Date
and Time < 150000
// and LatestEntryName(1) != "B2"
// and LatestEntryName(1) != "S2"
// and LatestEntryName(0) != "B2"
// and LatestEntryName(0) != "S2"
Then {
if DayIndex < reChkP Then {
HH = Highest(Max(C,O), DayIndex+1);
LL = Lowest(Min(C,O), DayIndex+1);
}
Else {
HH = Highest(Max(C,O), reChkP);
LL = Lowest(Min(C,O), reChkP);
}
Buy("B2", AtStop, HH);
Sell("S2", AtStop, LL);
}
if (MarketPosition == 1) Then {
if DayIndex < stopChk Then {
BS = Lowest(Min(C,O), DayIndex+1);
}
Else {
BS = Lowest(Min(C,O), stopChk);
}
ExitLong("EL", AtStop, BS);
}
if (MarketPosition == -1) Then {
if DayIndex < stopChk Then {
SS = Highest(Max(C,O), DayIndex+1);
}
Else {
SS = Highest(Max(C,O), stopChk);
}
#messageLog(" SS %.2f", SS);
ExitShort("ES", AtStop, SS);
}
var : month(0),nday(0),week(0),X(False);
month = int(date/100)-int(date/10000)*100;
nday = date - int(date/100)*100;
Week = DayOfWeek(date);
#만기일
if (month%3 == 0 and nday >= 8 and nday <= 14 and week == 4) then
{
X = true;
SetStopEndofday(151500);
}
Else#만기일아닐때
{
X = False;
SetStopEndofday(152000);
2025-01-24
485
글번호 187518
지표
답변완료
VWAP 이평선만들기
하기와 같이 이평선을 만들었는데
"줄수 0. 열수 1, 시스템 오류" 라는 메세지가 나타나는데 뭐가 잘못되었는지요?
Input : 기간(20),기간1(60),기간2(120),기간3(240);
Var1 : AA(0),BB(0),A(0),A1(0),A2(0),A3(0);
Var2 : X1(0),X2(0),X3(0),X4(0),X5(0),X6(0),X7(0),X8(0);
AA=(H+L+C)/3;
BB=AA*V;
X1=accumn(BB,기간);
X2=accumn(V,기간);
X3=accumn(BB,기간1);
X4=accumn(V,기간1);
X5=accumn(BB,기간2);
X6=accumn(V,기간2);
X7=accumn(BB,기간3);
X8=accumn(V,기간3);
A=X1/X2;
A1=X3/X4;
A2=X5/X6;
A3=X7/X8;
2025-01-23
601
글번호 187515
지표