답변완료
수식 문의 드립니다
아래의 수식 if data2(crossup(C,superTrend)) then buy();
if data2(crossdown(C,superTrend)) then exitlong();
매수진입 superTrend에 주가가 닿을때 매수진입 매수청산 superTrend에 주가가 닿을때 매수청산 되도록 수식 작성 부탁 드립니다.
( if MarketPosition == 0 and data2(h < superTrend) Then Buy("b",AtStop,superTrend);
위와 같이 작성 하니 실행이 안됩니다 //원하는 수식은 data2챠트에서 주가가
superTrend 아래에서 상승하여 data2의 superTrend에 닿을때 data1에서 매수 진입되고,
반대의 경우 매수 청산되도록 원합니다)
input : starttime(90500),endtime(150000),XTime(151500);
var : Tcond(false,Data2);
if Data2((sdate != sdate[1] and stime >= starttime) or
(sdate == sdate[1] and stime >= starttime and stime[1] < starttime)) then
{
Tcond = true;
}
if Data2((sdate != sdate[1] and stime >= endtime) or
(sdate == sdate[1] and stime >= endtime and stime[1] < endtime)) then
{
Tcond = false;
}
input : ntime(10),factor(3), AtrPeriod(10);
var : S1(0,Data2),D1(0,Data2),TM(0,Data2),TF(0,Data2),HH(0,Data2),LL(0,Data2),C1(0,Data2);
var : src(0,Data2), AtrV(0,Data2),ATRv1(0,Data2),upperBand(0,Data2),lowerBand(0,Data2), prevLowerBand(0,Data2), prevUpperBand(0,Data2);
var : prevSuperTrend(0,Data2), superTrend(0,Data2), direction(0,Data2),alpha(0,Data2),source(0,Data2);
if Bdate != Bdate[1] Then
{
S1 = data2(TimeToMinutes(stime));
D1 = data2(sdate);
}
if D1 > 0 then
{
if data2(sdate == D1) Then
TM = data2(TimeToMinutes(stime)-S1);
Else
TM = data2(TimeToMinutes(stime)+1440-S1);
TF = TM%ntime;
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and ntime > 1 and TF < TF[1]) or
(Bdate == Bdate[1] and ntime > 1 and TM >= TM[1]+ntime) or
(Bdate == Bdate[1] and ntime == 1 and TM > TM[1]) Then
{
HH = data2(H);
LL = data2(L);
C1 = data2(C[1]);
ATRV1 = ATRV[1];
prevSuperTrend = superTrend[1];
prevLowerBand = lowerBand[1];
prevUpperBand = upperBand[1];
}
if data2(H) > HH Then
HH = data2(H);
if data2(L) < LL Then
LL = data2(L);
src = (HH+LL)/2;
if C1 > 0 Then
{
alpha = 1 / AtrPeriod ;
source = max(HH - LL, abs(HH - C1), abs(LL - C1));
ATrV = alpha * source + (1 - alpha) * ATrV1;
upperBand = src + factor * AtrV;
lowerBand = src - factor * AtrV;
if lowerBand > prevLowerBand or C1 < prevLowerBand Then
lowerBand = lowerBand;
Else
lowerBand = prevLowerBand;
if upperBand < prevUpperBand or C1 > prevUpperBand Then
upperBand = upperBand;
Else
upperBand = prevUpperBand;
if prevSuperTrend == prevUpperBand Then
{
if data2(C) > upperBand Then
direction = -1;
Else
direction = 1;
}
Else
{
if data2(C) < lowerBand Then
direction = 1;
Else
direction = -1;
}
if direction == -1 Then
superTrend = lowerBand;
Else
superTrend = upperBand;
}
}
if Tcond == true then
{
if data2(crossup(C,superTrend)) then
buy();
if data2(crossdown(C,superTrend)) then
exitlong();
}
SetStopEndofday(XTime);
2024-09-06
835
글번호 183229
시스템
답변완료
검색식 문의 드립니다.
shortPeriod 9 midPeriod 26 longPeriod 52
1
(highest(high,midPeriod)+lowest(low,midPeriod))/2
2
전환선=(highest(high,shortPeriod)+lowest(low,shortPeriod))/2;
기준선=(highest(high,midPeriod)+lowest(low,midPeriod))/2;
선행1=(highest(high,shortPeriod)+lowest(low,shortPeriod)+highest(high,midPeriod)+lowest(low,midPeriod))/4;
선행2=(highest(high,longPeriod)+lowest(low,longPeriod))/2;
조건=Crossup(선행1,선행2) && 전환선>기준선;
ValueWhen(1,조건,선행1)
1 의 기준선이 2 기준선를 돌파할때 검색식쯤 부탁 드립니다
감사 드리구~ 수고 하세여~
2024-09-06
644
글번호 183222
종목검색
답변완료
수식전환
항상 감사드립니다 아래 키움수식을 예스랭귀지로 변환 좀 부탁드립니다
지표구간(일목균형표)
수식4
R=RSI(기간);
if(R<=40,valuewhen(1,L<L(1),L)*0.97,
Valuewhen(1,Crossup(R,40)or crossdown(R,40),C))
수식5
R=RSI(기간);
Valuewhen(1,Crossup(R,40)or crossdown(R,40),C)
지표변수 기간:17
2024-09-05
647
글번호 183221
지표