시뮬레이션이 되지 않는데 살펴주세요.
var : entrycond(false);
if bdate != bdate[1] Then
{
T = 0;
entrycond = true;
}
if T == 0 and H == DayHigh and dayhigh-daylow >= 10 Then
T = 1;
if T == 0 and l == DayLow and dayhigh-daylow >= 10 Then
T = -1;
if T == 1 and L <= dayhigh-10 Then
{
T = 2;
entrycond = true;
}
if T == -1 and H >= DayLow+10 Then
{
T = -2;
entrycond = true;
}
var : HH(0);
if stime < 120000 Then{
HH = dayhigh;
}
if stime >= 120000 and crossup(c,HH) and entrycond == false then
buy();
*************************************************************************************
안녕하세요
예스스탁입니다.
var : entrycond(false);
if bdate != bdate[1] Then
{
T = 0;
entrycond = true;
}
if T == 0 and H == DayHigh and dayhigh-daylow >= 10 Then
T = 1;
if T == 0 and l == DayLow and dayhigh-daylow >= 10 Then
T = -1;
if T == 1 and L <= dayhigh-10 Then
{
T = 2;
entrycond = true;
}
if T == -1 and H >= DayLow+10 Then
{
T = -2;
entrycond = true;
}
if 진입수식 and entrycond == false then
buy();
즐거운 하루되세요
> 좌오비우오비 님이 쓴 글입니다.
> 제목 : 문의
> 데이트레이딩 오후장에 사용할 진입필터 요청합니다.
당일 10포인트 이상 하이로우 발생한 후
역으로 10포인트 이상 움직이는 경우를 제외
if 진입수식 and (하이로우 10포인트 이하 and 역하이로우 10포인트 이하) then
buy();
답변 1
예스스탁
예스스탁 답변
2020-03-23 10:19:03
안녕하세요
예스스탁입니다.
var : entrycond(false),T(0);
if bdate != bdate[1] Then
{
T = 0;
entrycond = true;
}
if T == 0 and H == DayHigh and dayhigh-daylow >= 10 Then
T = 1;
if T == 0 and l == DayLow and dayhigh-daylow >= 10 Then
T = -1;
if T == 1 and L <= dayhigh-10 Then
{
T = 2;
entrycond = false;
}
if T == -1 and H >= DayLow+10 Then
{
T = -2;
entrycond = false;
}
var : HH(0);
if stime < 120000 Then{
HH = dayhigh;
}
if stime >= 120000 and crossup(c,HH) and entrycond == true then
buy();
즐거운 하루되세요
> 좌오비우오비 님이 쓴 글입니다.
> 제목 : 문의
> 시뮬레이션이 되지 않는데 살펴주세요.
var : entrycond(false);
if bdate != bdate[1] Then
{
T = 0;
entrycond = true;
}
if T == 0 and H == DayHigh and dayhigh-daylow >= 10 Then
T = 1;
if T == 0 and l == DayLow and dayhigh-daylow >= 10 Then
T = -1;
if T == 1 and L <= dayhigh-10 Then
{
T = 2;
entrycond = true;
}
if T == -1 and H >= DayLow+10 Then
{
T = -2;
entrycond = true;
}
var : HH(0);
if stime < 120000 Then{
HH = dayhigh;
}
if stime >= 120000 and crossup(c,HH) and entrycond == false then
buy();
*************************************************************************************
안녕하세요
예스스탁입니다.
var : entrycond(false);
if bdate != bdate[1] Then
{
T = 0;
entrycond = true;
}
if T == 0 and H == DayHigh and dayhigh-daylow >= 10 Then
T = 1;
if T == 0 and l == DayLow and dayhigh-daylow >= 10 Then
T = -1;
if T == 1 and L <= dayhigh-10 Then
{
T = 2;
entrycond = true;
}
if T == -1 and H >= DayLow+10 Then
{
T = -2;
entrycond = true;
}
if 진입수식 and entrycond == false then
buy();
즐거운 하루되세요
> 좌오비우오비 님이 쓴 글입니다.
> 제목 : 문의
> 데이트레이딩 오후장에 사용할 진입필터 요청합니다.
당일 10포인트 이상 하이로우 발생한 후
역으로 10포인트 이상 움직이는 경우를 제외
if 진입수식 and (하이로우 10포인트 이하 and 역하이로우 10포인트 이하) then
buy();