커뮤니티

전환 부탁드립니다

프로필 이미지
euni
2024-04-02 23:33:17
901
글번호 178213
답변완료
AA=C(1)<lowest(C(2), period)*ratio; //Demark 목표고가 BB=if(C(1)>O(1), (H(1)+L(1)+C(1)+H(1))/2-L(1), (if(C(1)<O(1), (H(1)+L(1)+C(1)+L(1))/2-L(1), (H(1)+L(1)+C(1)+C(1))/2-L(1)) ) ); //Demark 기준값 CC=if(C(1)>O(1), (H(1)+L(1)+C(1)+H(1))/4, (if(C(1)<O(1), (H(1)+L(1)+C(1)+L(1))/4, (H(1)+L(1)+C(1)+C(1))/4) ) ); DD=(O>=BB) or crossup(C,BB); EE= (O>=CC) or crossup(C,CC); FF=V>=V(1)*Vmul; GG=C>O; HH=C(1)<=O; AA and (DD or EE) and FF and GG and HH period 20 ratio 0.97 Vmul 2 키움 화살표 수식인데요. 지표수식과 검색수식, 종목검색식으로 전환 가능할까요? 감사합니다.
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-04-03 13:03:32

안녕하세요 예스스탁입니다. 1 지표 input : Period(20),ratio(0),Vmul(2); var : AA(False),BB(0),CC(0); var : DD(False),EE(False),FF(False),GG(False),HH(False); AA = C[1]<lowest(C, period)[2]*ratio; //Demark 목표고가 BB=iff(C[1]>O[1], (H[1]+L[1]+C[1]+H[1])/2-L[1], (iff(C[1]<O[1], (H[1]+L[1]+C[1]+L[1])/2-L[1], (H[1]+L[1]+C[1]+C[1])/2-L[1]) ) ); //Demark 기준값 CC=iff(C[1]>O[1], (H[1]+L[1]+C[1]+H[1])/4, (iff(C[1]<O[1], (H[1]+L[1]+C[1]+L[1])/4, (H[1]+L[1]+C[1]+C[1])/4) ) ); DD=(O>=BB) or crossup(C,BB); EE= (O>=CC) or crossup(C,CC); FF=V>=V[1]*Vmul; GG=C>O; HH=C[1]<=O; if AA and (DD or EE) and FF and GG and HH Then plot1(1); else plot1(0); 2 검색식 input : Period(20),ratio(0),Vmul(2); var : AA(False),BB(0),CC(0); var : DD(False),EE(False),FF(False),GG(False),HH(False); AA = C[1]<lowest(C, period)[2]*ratio; //Demark 목표고가 BB=iff(C[1]>O[1], (H[1]+L[1]+C[1]+H[1])/2-L[1], (iff(C[1]<O[1], (H[1]+L[1]+C[1]+L[1])/2-L[1], (H[1]+L[1]+C[1]+C[1])/2-L[1]) ) ); //Demark 기준값 CC=iff(C[1]>O[1], (H[1]+L[1]+C[1]+H[1])/4, (iff(C[1]<O[1], (H[1]+L[1]+C[1]+L[1])/4, (H[1]+L[1]+C[1]+C[1])/4) ) ); DD=(O>=BB) or crossup(C,BB); EE= (O>=CC) or crossup(C,CC); FF=V>=V[1]*Vmul; GG=C>O; HH=C[1]<=O; if AA and (DD or EE) and FF and GG and HH Then plot1(L,"검색"); 3 종목검색식 input : Period(20),ratio(0),Vmul(2); var : AA(False),BB(0),CC(0); var : DD(False),EE(False),FF(False),GG(False),HH(False); AA = C[1]<lowest(C, period)[2]*ratio; //Demark 목표고가 BB=iff(C[1]>O[1], (H[1]+L[1]+C[1]+H[1])/2-L[1], (iff(C[1]<O[1], (H[1]+L[1]+C[1]+L[1])/2-L[1], (H[1]+L[1]+C[1]+C[1])/2-L[1]) ) ); //Demark 기준값 CC=iff(C[1]>O[1], (H[1]+L[1]+C[1]+H[1])/4, (iff(C[1]<O[1], (H[1]+L[1]+C[1]+L[1])/4, (H[1]+L[1]+C[1]+C[1])/4) ) ); DD=(O>=BB) or crossup(C,BB); EE= (O>=CC) or crossup(C,CC); FF=V>=V[1]*Vmul; GG=C>O; HH=C[1]<=O; if AA and (DD or EE) and FF and GG and HH Then Find(1); 즐거운 하루되세요 > euni 님이 쓴 글입니다. > 제목 : 전환 부탁드립니다 > AA=C(1)<lowest(C(2), period)*ratio; //Demark 목표고가 BB=if(C(1)>O(1), (H(1)+L(1)+C(1)+H(1))/2-L(1), (if(C(1)<O(1), (H(1)+L(1)+C(1)+L(1))/2-L(1), (H(1)+L(1)+C(1)+C(1))/2-L(1)) ) ); //Demark 기준값 CC=if(C(1)>O(1), (H(1)+L(1)+C(1)+H(1))/4, (if(C(1)<O(1), (H(1)+L(1)+C(1)+L(1))/4, (H(1)+L(1)+C(1)+C(1))/4) ) ); DD=(O>=BB) or crossup(C,BB); EE= (O>=CC) or crossup(C,CC); FF=V>=V(1)*Vmul; GG=C>O; HH=C(1)<=O; AA and (DD or EE) and FF and GG and HH period 20 ratio 0.97 Vmul 2 키움 화살표 수식인데요. 지표수식과 검색수식, 종목검색식으로 전환 가능할까요? 감사합니다.