커뮤니티

문의드립니다

프로필 이미지
cjfdk
2024-10-29 14:09:24
631
글번호 184684
답변완료
input : Period(20),dv(2); input : 하단아래(3),하단위(4),상단위(3),상단아래(4); var : BBup(0),BBmd(0),BBdn(0); var : T(0),i1(0),i2(0),i3(0),i4(0); BBup = BollBandUp(Period,dv); BBmd = ma(c,Period); BBdn = BollBandDown(Period,dv); if CrossDown(C,BBdn) Then { T = -1; i1 = 0; } if CrossUp(C,BBdn) Then { T = 1; i2 = 0; } if CrossUp(C,BBup) Then { T = 2; i3 = 0; } if CrossDown(C,BBup) Then { T = -2; i4 = 0; } if T == -1 Then i1 = i1+1; if T == 1 Then i2 = i2+1; if T == 2 Then i3 = i3+1; if T == -2 Then i4 = i4+1; if MarketPosition <= 0 and T == 1 and i2 == 하단위 and i1 >= 하단아래 Then Buy(); if MarketPosition >= 0 and T == -2 and i4 == 상단아래 and i3 >= 상단위 Then Sell(); 수고 많으십니다 지난번 만들어 주신 수식인데 추가 수식 부탁 드립니다 매도 신호든 매수 신호든 신호 발생 시점에 ADX가 직전 20개 봉의 제일 높은 값 보다 10 포인트 이하로 내려와 있을 때만 진입하고 10 포인트 이하로 내려오지 않았을 때는 진입 금지 포지션 청산 다음 신호 대기 이런 수식을 추가 부탁 드립니다 감사합니다
시스템
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-10-29 17:00:22

안녕하세요 예스스탁입니다. input : Period(20),dv(2),ADXP(14); input : 하단아래(3),하단위(4),상단위(3),상단아래(4); var : BBup(0),BBmd(0),BBdn(0); var : T(0),i1(0),i2(0),i3(0),i4(0),A(0); BBup = BollBandUp(Period,dv); BBmd = ma(c,Period); BBdn = BollBandDown(Period,dv); A = ADX(ADXP); if CrossDown(C,BBdn) Then { T = -1; i1 = 0; } if CrossUp(C,BBdn) Then { T = 1; i2 = 0; } if CrossUp(C,BBup) Then { T = 2; i3 = 0; } if CrossDown(C,BBup) Then { T = -2; i4 = 0; } if T == -1 Then i1 = i1+1; if T == 1 Then i2 = i2+1; if T == 2 Then i3 = i3+1; if T == -2 Then i4 = i4+1; if MarketPosition <= 0 and T == 1 and i2 == 하단위 and i1 >= 하단아래 Then { if A <= highest(A,20)[1]-10 Then Buy(); Else ExitShort(); } if MarketPosition >= 0 and T == -2 and i4 == 상단아래 and i3 >= 상단위 Then { if A <= highest(A,20)[1]-10 Then Sell(); Else ExitLong(); } 즐거운 하루되세요 > cjfdk 님이 쓴 글입니다. > 제목 : 문의드립니다 > input : Period(20),dv(2); input : 하단아래(3),하단위(4),상단위(3),상단아래(4); var : BBup(0),BBmd(0),BBdn(0); var : T(0),i1(0),i2(0),i3(0),i4(0); BBup = BollBandUp(Period,dv); BBmd = ma(c,Period); BBdn = BollBandDown(Period,dv); if CrossDown(C,BBdn) Then { T = -1; i1 = 0; } if CrossUp(C,BBdn) Then { T = 1; i2 = 0; } if CrossUp(C,BBup) Then { T = 2; i3 = 0; } if CrossDown(C,BBup) Then { T = -2; i4 = 0; } if T == -1 Then i1 = i1+1; if T == 1 Then i2 = i2+1; if T == 2 Then i3 = i3+1; if T == -2 Then i4 = i4+1; if MarketPosition <= 0 and T == 1 and i2 == 하단위 and i1 >= 하단아래 Then Buy(); if MarketPosition >= 0 and T == -2 and i4 == 상단아래 and i3 >= 상단위 Then Sell(); 수고 많으십니다 지난번 만들어 주신 수식인데 추가 수식 부탁 드립니다 매도 신호든 매수 신호든 신호 발생 시점에 ADX가 직전 20개 봉의 제일 높은 값 보다 10 포인트 이하로 내려와 있을 때만 진입하고 10 포인트 이하로 내려오지 않았을 때는 진입 금지 포지션 청산 다음 신호 대기 이런 수식을 추가 부탁 드립니다 감사합니다