커뮤니티
수식 문의 드립니다
2026-04-30 13:38:21
117
글번호 231842
관리자님 수고 많으십니다.
수식 문의 드립니다.
1. voulme & Price in Sync 가 10을 상향 종목
2. volume power(5) 가 5를 상향종목
3. volume ratio (5)가 상승시작 종목
4. volume ratio (5)가 상승중인 종목
답변 1
예스스탁 예스스탁 답변
2026-04-30 15:47:40
안녕하세요
예스스탁입니다.
언급하신 10, 5가 단순 정수값인지
해당 지표값을 해당기간 평균한 시그널값인지 모르겠습니다.
주석 참고하셔서 선택해 사용하시기 바랍니다.
1-1
input : sigp(10);
Var : Sync(0);
If C < C[1] and V < V[1] Then
Sync = -v;
Else If C > C[1] and V > V[1] Then
Sync = v;
Else
Sync = 0;
var1 = ma(sync,sigp);
#voulme & Price in Sync가 숫자 10을 상향돌파
if CrossUp(Sync,10) Then
Find(1)
1-2
input : sigp(10);
Var : Sync(0);
If C < C[1] and V < V[1] Then
Sync = -v;
Else If C > C[1] and V > V[1] Then
Sync = v;
Else
Sync = 0;
var1 = ma(sync,sigp);
#voulme & Price in Sync가 해당지표 10봉 평균값을 상향돌파
if CrossUp(Sync,var1) Then
Find(1)
2-1
Input : p(5);
var : Vpower(0),Upper(0),Lower(0);
Vpower = upVol/(upVol+downVol)*100-50;
If Vpower > 0 Then
Upper = Vpower;
Else
Upper = 0;
If Vpower <= 0 Then
lower = Vpower;
Else
lower = 0;
var2 = ma(Vpower,p);
#volume Powe가 숫자 5를 상향돌파
if CrossUp(Vpower,5) Then
Find(1);
2-2
Input : p(5);
var : Vpower(0),Upper(0),Lower(0);
Vpower = upVol/(upVol+downVol)*100-50;
If Vpower > 0 Then
Upper = Vpower;
Else
Upper = 0;
If Vpower <= 0 Then
lower = Vpower;
Else
lower = 0;
var2 = ma(Vpower,p);
#volume power가 해당지표 5봉평균값을 상향돌파
if CrossUp(Vpower,var2) Then
Find(1);
3
Input : Period(20);
var : VolumeRatio(0),T(0);
VolumeRatio = VR(Period);
if VolumeRatio > VolumeRatio[1] Then
T = 1;
if VolumeRatio < VolumeRatio[1] Then
T = -1;
if T == 1 and T != T[1] Then
Find(1);
4
Input : Period(20);
var : VolumeRatio(0),T(0);
VolumeRatio = VR(Period);
if VolumeRatio > VolumeRatio[1] Then
T = 1;
if VolumeRatio < VolumeRatio[1] Then
T = -1;
if T == 1 Then
Find(1);
즐거운 하루되세요
다음글
이전글