[설명]
장초반 30분 동안의 움직임이 하루의 추세를 결정한다는 것을 기본전제로한 전략으로
데이트레이딩 거래에서 흔히 이용되는 채널돌파 매매기법입니다.
[시스템식]
var : HH(0),LL(0);
if stime < 93000 Then{
HH = dayhigh;
LL = daylow;
}
if stime >= 93000 and crossup(c,HH) then
buy();
if stime >= 93000 and CrossDown(c,LL) then
sell();
SetStopEndofday(150000);
다음검색