답변완료
부탁드립니다
highest(C(1),CPeriod) < C &&
Crossup(CCI(CPeriod),0);
A=ADX(14);
M=ma(C,20);
R=RSI(14);
대금=V*(H+O+L+C)/4;
A>20 and A>A(1) and C>O and C>M and
대금>2000000000 and R>0 and R>R(1) and
Crossup(CCI(20),0) and
Crossup(DIPLUS(14),DIMinus(14));
Crossup(CCI(20),0) and
Crossup(DIPLUS(14),DIMinus(14)) &&
V>V(1)*배수
CPeriod(9) 배수(2)
2024-12-20
720
글번호 186458
종목검색
답변완료
수고하십니다.
SX1=(highest(high,9)+lowest(low,9)+highest(high,26)+lowest(low,26))/4;
SX2=(highest(high,52)+lowest(low,52))/2;
SX3=(SX1+SX2)/2;
SS1=shift((highest(high,9)+lowest(low,9)+highest(high,26)+lowest(low,26))/4,25);
SS2=shift((highest(high,52)+lowest(low,52))/2,25);
SS3=(SS1+SS2)/2;
AA=MAX(SX3,SS3);
AA1=ADX(11);
A=(O+H+L+C)/4;
((O<=AA*1.01 && AA<=O) OR CROSSUP(A,AA)) &&
AA1(1)<AA1
수정하여 다시 올렸습니다
2024-12-20
613
글번호 186446
종목검색
답변완료
지표 전환 부탁드립니다
//@version=6
indicator("Intraday Volume", overlay=false)
// Define session times for the market open and close
session_start = timestamp("GMT-5", year, month, dayofmonth, 9, 35) // 9:30 AM EST
session_end = timestamp("GMT-5", year, month, dayofmonth, 15, 55) // 4:00 PM EST
// Check if the current time is within the intraday session
is_intraday_session = time >= session_start and time < session_end
// Accumulate volume during the intraday session
var float intraday_volume = na
if (is_intraday_session)
intraday_volume := volume // volume nz(intraday_volume) == 0 ? volume : na
else
intraday_volume := na // Reset volume outside the session
// Plot the intraday volume
candle_color() =>
if open > close
color.red
else
color.green
plot(intraday_volume, title="Intraday Volume", color=candle_color(), style=plot.style_columns)
// Optional: Add a horizontal line for visual reference
hline(0, "Zero Line", color=color.gray)
2024-12-20
601
글번호 186441
지표
답변완료
검색식 부탁합니다
특정기간(일봉 또는 분봉)에서 갑자기 상승하는 종목을 제외할 수 있는
지표는 이격도라고 할 수 있을까요?
아니면 다른 지표가 있을까요?
검색해보니
input : 기간1(20),기간2(60),이격률1(0.95),이격률2(0.89);
var : A1(0),A2(0),이격도(False),A3(False),중심(0);
A1 = ma(C, 기간1);
A2 = ma(C, 기간2);
이격도 = C <= O * 이격률1 && C >= O*이격률2;
A3 = A1 > A2 && A1 > H && 이격도 && (O-C) > (H-O) && (O-C) > (C-L);
if A3 == true Then
중심 = C;
if A3 && 중심[1] > C Then
Find(1);
와 같은데 이 검색식으로 가능한지요? 부탁드립니다
2024-12-20
643
글번호 186438
종목검색