커뮤니티
수식 수정 부탁드립니다.
2017-08-31 18:02:49
115
글번호 112413
var : HC(0),cnt(0);
HC = DayClose(1);
for cnt = 1 to 3{
if DayClose(cnt) > HC Then
HC = DayClose(cnt);
}
if MarketPosition == 0 and
crossup(C,HC) and
1000 < C and C < 12000 and
((DayVolume(1) > DayVolume(2)*0.8 and DayVolume(1) < DayVolume(2)*1.20) or
(DayVolume(1) < DayVolume(2)*1.00)) and
DayVolume >= DayVolume(1)*0.20 and
stime < 93000 Then
buy();
SetStopProfittarget(3,PercentStop);
SetStopLoss(2,PercentStop);
SetStopEndofday(152000);
위수식에 기간내 주가변동폭:[일]0봉전까지 80봉간 최고최저폭 30%이상 추가 부탁드립니다.
답변 1
예스스탁 예스스탁 답변
2017-09-01 11:35:20
안녕하세요
예스스탁입니다.
var : HC(0),cnt(0);
HC = DayClose(1);
for cnt = 1 to 3{
if DayClose(cnt) > HC Then
HC = DayClose(cnt);
}
if MarketPosition == 0 and
highest(H,80) >= lowest(L,80)*1.30 and
crossup(C,HC) and
1000 < C and C < 12000 and
((DayVolume(1) > DayVolume(2)*0.8 and DayVolume(1) < DayVolume(2)*1.20) or
(DayVolume(1) < DayVolume(2)*1.00)) and
DayVolume >= DayVolume(1)*0.20 and
stime < 93000 Then
buy();
SetStopProfittarget(3,PercentStop);
SetStopLoss(2,PercentStop);
SetStopEndofday(152000);
즐거운 하루되세요
> 디얼디어 님이 쓴 글입니다.
> 제목 : 수식 수정 부탁드립니다.
>
var : HC(0),cnt(0);
HC = DayClose(1);
for cnt = 1 to 3{
if DayClose(cnt) > HC Then
HC = DayClose(cnt);
}
if MarketPosition == 0 and
crossup(C,HC) and
1000 < C and C < 12000 and
((DayVolume(1) > DayVolume(2)*0.8 and DayVolume(1) < DayVolume(2)*1.20) or
(DayVolume(1) < DayVolume(2)*1.00)) and
DayVolume >= DayVolume(1)*0.20 and
stime < 93000 Then
buy();
SetStopProfittarget(3,PercentStop);
SetStopLoss(2,PercentStop);
SetStopEndofday(152000);
위수식에 기간내 주가변동폭:[일]0봉전까지 80봉간 최고최저폭 30%이상 추가 부탁드립니다.