안녕하세요?
아래시스템에서 잘 안되는부분을 수정 부탁드립니다.
1. 외부변수에 봉길이 틱수를 집어넣으면 맞지가 않습니다.
2. 익절손절이 맞지가않습니다.
3. 진입횟수는 정확히 맞습니다
부탁드립니다. 감사합니다.
input : 매수음봉틱수(5),매수양봉틱수(5);
input : 매도양봉틱수(5),매도음봉틱수(5);
input : 진입횟수(5);
input : 익절틱수(50),손절틱수(50);
var : entry(0);
if bdate != bdate[1] Then
entry = 0;
if MarketPosition != 0 and MarketPosition != MarketPosition[1] Then
entry = entry+1;
if entry < 진입횟수 and
MarketPosition >= 0 and
C[1] >= O[1]+매도양봉틱수*PriceScale and
C[0] <= O[0]+매도음봉틱수*PriceScale Then
sell("s");
if entry < 진입횟수 and
MarketPosition <= 0 and
C[1] <= O[1]+매수음봉틱수*PriceScale and
C[0] >= O[0]+매수양봉틱수*PriceScale Then
buy("b");
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);
답변 1
예스스탁
예스스탁 답변
2020-02-25 14:53:24
안녕하세요
예스스탁입니다.
수식 수정하고 주석 붙여드립니다.
이후 해당 내용에 대해 수정보완하실때 참고하시기 바랍니다.
input : 매수음봉틱수(5),매수양봉틱수(5);
input : 매도양봉틱수(5),매도음봉틱수(5);
input : 진입횟수(5);
input : 익절틱수(50),손절틱수(50);
var : entry(0);
#영업일 변경
if bdate != bdate[1] Then
entry = 0;
#포지션이 변경되어 새로운 진입포지션 발생시마다 1씩 증가
if MarketPosition != 0 and MarketPosition != MarketPosition[1] Then
entry = entry+1;
if entry < 진입횟수 and #진입횟수가 지정한 값 이하
MarketPosition >= 0 and #매수나 무포지션 상태
C[1] >= O[1]+매도양봉틱수*PriceScale and #1봉전종가가 1봉전시가+매도양봉틱수 이상
C[0] <= O[0]-매도음봉틱수*PriceScale Then #현재봉 종가가 1봉전시가-매도음봉틱수 이하
sell("s");
if entry < 진입횟수 and #진입횟수가 지정한 값 이하
MarketPosition <= 0 and #매도나 무포지션 상태
C[1] <= O[1]-매수음봉틱수*PriceScale and #1봉전종가가 1봉전시가-매수음봉틱수 이하
C[0] >= O[0]+매수양봉틱수*PriceScale Then #현재봉 종가가 1봉전시가+매수양봉틱수 이상
buy("b");
#목표수익 설정
SetStopProfittarget(PriceScale*익절틱수,PointStop);
#손절매 설정
SetStopLoss(PriceScale*손절틱수,PointStop);
즐거운 하루되세요
> 대구어린울프 님이 쓴 글입니다.
> 제목 : 수정 부탁드립니다.
> 안녕하세요?
아래시스템에서 잘 안되는부분을 수정 부탁드립니다.
1. 외부변수에 봉길이 틱수를 집어넣으면 맞지가 않습니다.
2. 익절손절이 맞지가않습니다.
3. 진입횟수는 정확히 맞습니다
부탁드립니다. 감사합니다.
input : 매수음봉틱수(5),매수양봉틱수(5);
input : 매도양봉틱수(5),매도음봉틱수(5);
input : 진입횟수(5);
input : 익절틱수(50),손절틱수(50);
var : entry(0);
if bdate != bdate[1] Then
entry = 0;
if MarketPosition != 0 and MarketPosition != MarketPosition[1] Then
entry = entry+1;
if entry < 진입횟수 and
MarketPosition >= 0 and
C[1] >= O[1]+매도양봉틱수*PriceScale and
C[0] <= O[0]+매도음봉틱수*PriceScale Then
sell("s");
if entry < 진입횟수 and
MarketPosition <= 0 and
C[1] <= O[1]+매수음봉틱수*PriceScale and
C[0] >= O[0]+매수양봉틱수*PriceScale Then
buy("b");
SetStopProfittarget(PriceScale*익절틱수,PointStop);
SetStopLoss(PriceScale*손절틱수,PointStop);