커뮤니티
글번호 45496번 재질문
2015-12-15 23:27:45
108
글번호 93458
안녕하세요?
글번호 45496번 재질문입니다.
아래는 SK증권에서 사용하였던 진입필터였습니다.
YT에서 적용가능 할련지요?
Vars : mp(0), EntryTimeV(0);
mp = SignalPosition;
EntryTimeV = EntryTime(1);
value1 = ~ ;
value2 = ~ ;
If (mp <> mp[1] Or EntryTimeV <> EntryTimeV[1])
And PositionProfit(1) > 0 Then condition1 = true;
If PositionProfit(1) < 0 Then condition1 = False;
If ~ Then
Begin
If condition1 = False Then Buy();
condition1 = False;
End;
If ~ Then ExitLong();
답변 1
예스스탁 예스스탁 답변
2015-12-16 14:31:49
안녕하세요
예스스탁입니다.
Vars : mp(0), EntryTimeV(0);
mp = MarketPosition;
EntryTimeV = EntryTime(1);
value1 = ~ ;
value2 = ~ ;
If (mp <> mp[1] Or EntryTimeV <> EntryTimeV[1])
And PositionProfit(1) > 0 Then
condition1 = true;
If PositionProfit(1) < 0 Then
condition1 = False;
If ~ Then {
If condition1 == False Then Buy();
condition1 = False;
}
If ~ Then ExitLong();
즐거운 하루되세요
> 통큰베팅 님이 쓴 글입니다.
> 제목 : 글번호 45496번 재질문
> 안녕하세요?
글번호 45496번 재질문입니다.
아래는 SK증권에서 사용하였던 진입필터였습니다.
YT에서 적용가능 할련지요?
Vars : mp(0), EntryTimeV(0);
mp = SignalPosition;
EntryTimeV = EntryTime(1);
value1 = ~ ;
value2 = ~ ;
If (mp <> mp[1] Or EntryTimeV <> EntryTimeV[1])
And PositionProfit(1) > 0 Then condition1 = true;
If PositionProfit(1) < 0 Then condition1 = False;
If ~ Then
Begin
If condition1 = False Then Buy();
condition1 = False;
End;
If ~ Then ExitLong();
이전글