커뮤니티
시스템식
2011-02-16 21:31:47
873
글번호 35770
if dayindex == 0 Then
Condition1 = false;
if stime >= 90000 and data2(C) > 0 and Condition1 == false then{
buy();
Condition1 = true;
}
if stime >= 90000 and data2(C) < 0 then
ExitLong();
답변 1
예스스탁 예스스탁 답변
2011-02-16 08:27:38
안녕하세요
예스스탁입니다.
input : Profit(1);
if dayindex == 0 Then
Condition1 = false;
if stime >= 90000 and stime < 145000 and data2(C) > 0 and Condition1 == false then{
buy();
Condition1 = true;
}
if stime >= 90000 and data2(C) < 0 then
ExitLong();
SetStopProfittarget(Profit,PercentStop);
즐거운 하루되세요
> erwe343 님이 쓴 글입니다.
> 제목 : 시스템식
> ETF 주문시 9:00 ~ 14:50까지 주문을 넣어야합니다.
트레이드 시간을 식에 넣어주시고, 매수후 1% 오르면 매도되게끔 식조정 부탁합니다.
트레이드시간: 09:00 ~ 14:50
매도: 매수후 1% 오르면 매도
if dayindex == 0 Then
Condition1 = false;
if stime >= 90000 and data2(C) > 0 and Condition1 == false then{
buy();
Condition1 = true;
}
if stime >= 90000 and data2(C) < 0 then
ExitLong();
이전글