커뮤니티

수식부탁드립니다^^) 항상감사합니다

프로필 이미지
알로우kim
2023-01-05 15:11:02
810
글번호 165135
답변완료
수식1 VV=highest(V(1), period); accumulationVolume=valuewhen(1, V>VV*2 and C(1)<C, V); accumulationOpen=valuewhen(1, V>VV*2 and C(1)<C, min(C, O)); AA=C<=accumulationOpen and V*multiple<accumulationVolume; condition=AA and O<C and (disparity(250)<=110 or disparity(125)<=110); if(condition, O, 0) 수식2 VV=highest(V(1), period); accumulationOpen=valuewhen(1, V>VV*2 and C(1)<C, min(C, O)) 지표 조건 period 60 multiple 2
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2023-01-05 16:41:35

안녕하세요 예스스탁입니다. input : Period(60),multiple(2); var : vv(0),accumulationVolume(0),accumulationOpen(0); var : aa(False); VV=highest(V[1], period); if v > vv*2 and c[1] < c Then { accumulationVolume = V; accumulationOpen = min(C, O); } AA=C<=accumulationOpen and V*multiple<accumulationVolume; condition1=AA and O<C and (disparity(250)<=110 or disparity(125)<=110); if Condition1 == true Then var1 = O; Plot1(var1); plot2(accumulationOpen); 즐거운 하루되세요 > 알로우kim 님이 쓴 글입니다. > 제목 : 수식부탁드립니다^^) 항상감사합니다 > 수식1 VV=highest(V(1), period); accumulationVolume=valuewhen(1, V>VV*2 and C(1)<C, V); accumulationOpen=valuewhen(1, V>VV*2 and C(1)<C, min(C, O)); AA=C<=accumulationOpen and V*multiple<accumulationVolume; condition=AA and O<C and (disparity(250)<=110 or disparity(125)<=110); if(condition, O, 0) 수식2 VV=highest(V(1), period); accumulationOpen=valuewhen(1, V>VV*2 and C(1)<C, min(C, O)) 지표 조건 period 60 multiple 2