위클리옵션
데이트레이딩용
1) 진입 이후 가격이 0.02 이하일 경우 exitlong 수식을 추가해 주십시요.
if 0.5 > c and c > 0.10 and c > dayopen + 0.01 then
buy();
2) stop end of day 수식 요청드립니다.
{
SetStopEndofday(151500); 목요일 청산시간
}
Else
{
SetStopEndofday(153000); 금,월,화,수 청산시간
}
답변 1
예스스탁
예스스탁 답변
2021-12-13 14:25:03
안녕하세요
예스스탁입니다.
1
if 0.5 > c and c > 0.10 and c > dayopen + 0.01 then
buy();
if MarketPosition == 1 and c <= 0.02 Then
ExitLong();
2
if Bdate != Bdate[1] Then
{
if DayOfWeek(Bdate) == 4 Then
{
SetStopEndofday(151500);#목요일 청산시간
}
Else
{
SetStopEndofday(153000);##금,월,화,수 청산시간
}
}
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 위클리옵션
데이트레이딩용
1) 진입 이후 가격이 0.02 이하일 경우 exitlong 수식을 추가해 주십시요.
if 0.5 > c and c > 0.10 and c > dayopen + 0.01 then
buy();
2) stop end of day 수식 요청드립니다.
{
SetStopEndofday(151500); 목요일 청산시간
}
Else
{
SetStopEndofday(153000); 금,월,화,수 청산시간
}