답변완료
문의
아래수식을 당일에 적용하도로 변경가능한가요
input: rangeStart(1), rangeEnd(10), priceStep(1), priceRange(100);
var: priceVolumeSum(0), maxVolume(0), POC(0);
var: i(0), j(0), tempPrice(0), tempVol(0), tempIdx(0);
array: volumeProfile[101](0) ; // 배열 크기를 101로 설정하고 초기값을 0으로 설정
// 볼륨 프로파일을 초기화
for i = 0 to 100 begin
volumeProfile[i] = 0;
end;
// 범위 내 각 봉에 대해 볼륨 프로파일을 계산
for i = rangeStart to rangeEnd
begin
tempPrice = Close[i];
tempVol = Volume[i];
tempIdx = int((tempPrice - Low[rangeEnd]) / priceStep);
if tempIdx >= 0 and tempIdx <= 100 then
Begin
volumeProfile[tempIdx] = volumeProfile[tempIdx] + tempVol;
end;
end;
// 최대 거래량이 발생한 가격(POC)을 찾음
for j = 0 to 100 begin
if volumeProfile[j] > maxVolume then begin
maxVolume = volumeProfile[j];
POC = Low[rangeEnd] + j * priceStep;
end;
end;
// POC를 차트에 라인으로 표시
if POC != 0 then
Plot1(POC,"POC Line", Yellow,Def, 2);
2024-09-12
509
글번호 183395
지표
답변완료
종목검색식 요청드립니다.
아래 키움수식을 만족하는 조건검색식을 만들고 싶습니다. 도움 부탁드립니다.
키움수식 [지표설정값 : period(10),period1(10),period2(20), period3(20)]
AA1=crossup(StochasticsSlow(period1,period2),
eavg(StochasticsSlow(period1,period2),period3));
AA2=crossup(CCI(period),0);
AA1+AA2>=2
항상 감사합니다.^^
2024-09-12
550
글번호 183394
종목검색
답변완료
화살표 부탁드려요
예스트레이더로 보내주신 수식입니다. 재문의 드립니다.
아래 수식을 키움으로 화살표 수식으로 바꾸면 어떻게 바꾸면 될까요?
---------아래--------
input : ph(0.85);
var : i_wvf(0),i_sDev(0),i_midLine(0),i_upperBand(0),i_rangeHigh(0);
i_wvf = ((high - lowest(C, 22)) / lowest(C, 22)) * 100;
i_sDev = 2.0 * std(i_wvf, 20);
i_midLine = ma(i_wvf, 20);
i_upperBand = i_midLine + i_sDev;
i_rangeHigh = (highest(i_wvf, 50)) * ph;
if i_wvf >= i_upperBand or i_wvf >= i_rangeHigh Then
var1 = i_wvf;
Else
var1 = 0;
if var1 > 0 and var1[1] == 0 Then
Find(1);
2024-09-11
425
글번호 183392
사용자 함수