커뮤니티
문의
2019-05-08 08:32:16
208
글번호 128494
아래 내용을 추가하는 수식을 요청드립니다.
buy수식
전일 고가보다 금일 시가가 1.5포인트 이상 상승한 경우
input : gap(1.50);
input : ntime(100000);
sell수식
전일 저가보다 금일 시가가 1.5포인트 이상 하락한 경우
input : gap(1.50);
input : ntime(100000);
************************************************************************************
buy 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
buy();
sell 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
sell();
답변 3
예스스탁 예스스탁 답변
2019-05-08 15:00:24
안녕하세요
예스스탁입니다.
input : Buytime(100000),BuyGap(1.50);
input : Selltime(100000),SellGap(1.50);
if (stime == Buytime or (stime > Buytime and stime[1] < Buytime)) and
dayopen(0) >= DayHigh(0)+BuyGap Then
buy();
if (stime == Selltime or (stime > Selltime and stime[1] < Selltime)) and
dayopen(0) <= daylow-SellGap Then
sell();
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 아래 내용을 추가하는 수식을 요청드립니다.
buy수식
전일 고가보다 금일 시가가 1.5포인트 이상 상승한 경우
input : gap(1.50);
input : ntime(100000);
sell수식
전일 저가보다 금일 시가가 1.5포인트 이상 하락한 경우
input : gap(1.50);
input : ntime(100000);
************************************************************************************
buy 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
buy();
sell 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
sell();
목마와숙녀
2019-05-08 15:35:49
시뮬레이션이 안됩니다.
> 예스스탁 님이 쓴 글입니다.
> 제목 : Re : 문의
>
안녕하세요
예스스탁입니다.
input : Buytime(100000),BuyGap(1.50);
input : Selltime(100000),SellGap(1.50);
if (stime == Buytime or (stime > Buytime and stime[1] < Buytime)) and
dayopen(0) >= DayHigh(0)+BuyGap Then
buy();
if (stime == Selltime or (stime > Selltime and stime[1] < Selltime)) and
dayopen(0) <= daylow-SellGap Then
sell();
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 아래 내용을 추가하는 수식을 요청드립니다.
buy수식
전일 고가보다 금일 시가가 1.5포인트 이상 상승한 경우
input : gap(1.50);
input : ntime(100000);
sell수식
전일 저가보다 금일 시가가 1.5포인트 이상 하락한 경우
input : gap(1.50);
input : ntime(100000);
************************************************************************************
buy 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
buy();
sell 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
sell();
예스스탁 예스스탁 답변
2019-05-08 15:43:48
안녕하세요
예스스탁입니다.
아래식 사용하시기 바랍니다.
전일고가와 전일저가를 잘못 지정했습니다.
input : Buytime(100000),BuyGap(1.50);
input : Selltime(100000),SellGap(1.50);
if (stime == Buytime or (stime > Buytime and stime[1] < Buytime)) and
dayopen(0) >= DayHigh(1)+BuyGap Then
buy();
if (stime == Selltime or (stime > Selltime and stime[1] < Selltime)) and
dayopen(0) <= daylow(1)-SellGap Then
sell();
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : Re : Re : 문의
> 시뮬레이션이 안됩니다.
> 예스스탁 님이 쓴 글입니다.
> 제목 : Re : 문의
>
안녕하세요
예스스탁입니다.
input : Buytime(100000),BuyGap(1.50);
input : Selltime(100000),SellGap(1.50);
if (stime == Buytime or (stime > Buytime and stime[1] < Buytime)) and
dayopen(0) >= DayHigh(0)+BuyGap Then
buy();
if (stime == Selltime or (stime > Selltime and stime[1] < Selltime)) and
dayopen(0) <= daylow-SellGap Then
sell();
즐거운 하루되세요
> 목마와숙녀 님이 쓴 글입니다.
> 제목 : 문의
> 아래 내용을 추가하는 수식을 요청드립니다.
buy수식
전일 고가보다 금일 시가가 1.5포인트 이상 상승한 경우
input : gap(1.50);
input : ntime(100000);
sell수식
전일 저가보다 금일 시가가 1.5포인트 이상 하락한 경우
input : gap(1.50);
input : ntime(100000);
************************************************************************************
buy 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
buy();
sell 수식
input : ntime(100000);
if stime == ntime or (stime > ntime and stime[1] < ntime) Then
sell();