커뮤니티
문의
2019-06-03 09:32:14
250
글번호 129128
아래에 사용하는
input : 최대(99999), 최소(0); 필터를 대체하는 수식을 요청합니다.
전일 옵션 등가격 양합값으로 대체하여 사용하는 수식으로 변경
등가산출 기준 : 전일 kospi200지수(중간가격일 경우 상위 행사가)
input : 등가양합 최대(99999), 등가양합 최소(0);
**************************************************************************
input : 최대(99999), 최소(0);
input : Length(1), Consec(3);
input : 진입횟수(1);
var : T1(0), entry(0);
if bdate != Bdate[1] Then
T1 = TotalTrades;
if MarketPosition == 0 Then
entry = TotalTrades-T1;
Else
entry = TotalTrades-T1+1;
if entry < 진입횟수 and CountIf(Close > Highest(High, Length)[1], Consec) == Consec and 최대 >= C and C >= 최소 Then Buy ("CBO_LE");
if entry < 진입횟수 and CountIf(Close < Lowest(Low, Length)[1], Consec) == Consec and 최대 >= C and C >= 최소 Then sell ("CBO_SE");
답변 1
예스스탁 예스스탁 답변
2019-06-03 14:39:11
안녕하세요
예스스탁입니다.
문의하신 내용은 수식으로 가능하지 않습니다.
랭귀지는 수식이 적용된 차트의 데이타만 이용가능합니다.
수식안에서 차트의 데이타를 선택해 적용할수 없어
문의하신 내용으로는 계산이 불가능합니다.
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 아래에 사용하는
input : 최대(99999), 최소(0); 필터를 대체하는 수식을 요청합니다.
전일 옵션 등가격 양합값으로 대체하여 사용하는 수식으로 변경
등가산출 기준 : 전일 kospi200지수(중간가격일 경우 상위 행사가)
input : 등가양합 최대(99999), 등가양합 최소(0);
**************************************************************************
input : 최대(99999), 최소(0);
input : Length(1), Consec(3);
input : 진입횟수(1);
var : T1(0), entry(0);
if bdate != Bdate[1] Then
T1 = TotalTrades;
if MarketPosition == 0 Then
entry = TotalTrades-T1;
Else
entry = TotalTrades-T1+1;
if entry < 진입횟수 and CountIf(Close > Highest(High, Length)[1], Consec) == Consec and 최대 >= C and C >= 최소 Then Buy ("CBO_LE");
if entry < 진입횟수 and CountIf(Close < Lowest(Low, Length)[1], Consec) == Consec and 최대 >= C and C >= 최소 Then sell ("CBO_SE");
다음글
이전글