답변완료
종목 검색식 부탁드립니다
진심으로 감사드립니다
다음 이지랭귀지 신호검색식을 예스트레이더 종목검색식으로 부탁드립니다
1.
A=(Highest(High,9)+Lowest(Low,9))/2;
조건=O>A and A>avg(C,10) and avg(C,10)>avg(C,60);
조건 && !조건(1)
2.
V(0)>=Highest(V,40,0) 
and V(0)>=(Highest(V,40,1))*1.2 
and C(0)>=Highest(C,20,0) 
and Amount(0)>30000 
and (C(1)*1.03)<C(0) 
3.
A=ADX(14);
DiMinus(14) >= 1
and DiMinus(14) <= 17
and CrossUp(CCI(26), 0)
and A(1) < A  
4.
avg(C, 5) > avg(C, 10) 
and avg(C, 10) > avg(C, 20) 
and avg(C, 20) > avg(C, 60) 
5.
A1=Floor(date/100);
A2=A1 % 100;
B=Valuewhen(1, A2(1)!=A2, O);
CrossDown(C,B)
6.
A1=EnvelopeUp(20,20);
A= CrossUp(H, A1);
(A(4) or A(3)) 
and CrossDown(H(1), A1(1)) 
and O > C
7.
A=Floor(date/100);
B=Valuewhen(1, date-date(1) >= 3 
and A(1)==A, O);
CrossDown(C, B)
8.
A=eavg(OBV(), 60);
B=if(A(1) > A, 1, 0);
Sum(B(2), 10) >= 10
and  A(2) < A(1) and A(1) < A
9.
a=100*( (avg( (C+H+L)/3,20)+2*Stdev((C+H+L)/3,20))
-(avg((C+H+L)/3,20)-2*Stdev((C+H+L)/3,20))) / avg
((C+H+L)/3,20);
b=(Highest(V,9)+Lowest(V,9))/2;
CrossUp(C,Highest(H(1),3)) && V>b
10.
M20=Ma(C,20);
M60=Ma(C,60);
LL=Lowestsince(1,CrossDown(M20,M60),M20);
M20<M60 && CrossUp(C,LL)
2024-12-04
618
글번호 185946
종목검색
답변완료
질문 하나 드리겠습니다
안녕하세요
일봉상 단기과열 예고 신호와 투자경고지정예고가 나타날때 분봉 차트에 표현하고 싶은데요
강조로 표현하고자 합니다
하나의 수식으로 통합으로 작성했을때 둘중 하나만 발생해도 나타나게 하고 싶습니다
감사합니다
수식은 아래와 같습니다
1.단기과열 예고
A = sum(avg(c, 40, 1) * 1.3 <= C and
avg(money/C, 40, 1) * 6 <= avg(money/C, 2) and
avg(((h-l)/((h+l)/2)), 40, 1) * 1.5 <= avg(((h-l)/((h+l)/2)), 2)
and C(1) < C);
B = valuewhen(1, A(1) != A, C);
if(A(1) - A(11) >= 1, B(1) < C and A(1) != A, 0)
2.투자경고지정 예고
(highest(C,15)
and npredayclose(3)*2.0<=c
and predayclose()<c)
or
(highest(C,15)
and npredayclose(5)*1.60<=c
and predayclose()<c)
or
(highest(C,15)
and npredayclose(15)*2.0<=c
and predayclose()<c)
2024-12-04
551
글번호 185944
강조
답변완료
예스랭귀지 수식 요청합니다
키움수식
1번 지표
A=(eavg(c, N)-eavg(c, M))/eavg(c, M) * 100;
A
2번 지표
A=(eavg(c, N)-eavg(c, M))/eavg(c, M) * 100
eavg(A, T)
3번 지표
A=(eavg(c, N)-eavg(c, M))/eavg(c, M) * 100
A-eavg(A, T)
지표조건설정>
N 12
M 26
T 9
위의 지표들로
1) 1번 지표가 0선을 돌파 할때
2) 1번 지표가 2번 지표를 돌파 할때
3) 3번 지표가 0선을 돌파 할때
예스랭귀지 가능할까요?
감사합니다
2024-12-04
542
글번호 185935
종목검색
답변완료
수고하십니다.
A=지수평균((highest(종가,20)+highest(종가,40))/2,40)+
if(종가<시가,1-((종가-시가)/highest((종가-
시가),40)),1)*0.5*stdev((저가+고가+종가)/3,40)
B=BBandsUp(10,2)
B가 A 를 돌파하는 식 부탁합니다.
감사합니다.
2024-12-04
607
글번호 185933
종목검색
답변완료
문의 드립니다
안녕하세요
다음 트뷰지표 전환 부탁드립니다.
// Inputs
a = input(1, title = "Key Vaule. 'This changes the sensitivity'")
c = input(10, title = "ATR Period")
h = input(false, title = "Signals from Heikin Ashi Candles")
xATR = atr(c)
nLoss = a * xATR
src = h ? security(heikinashi(syminfo.tickerid), timeframe.period, close, lookahead = false) : close
xATRTrailingStop = 0.0
xATRTrailingStop := iff(src > nz(xATRTrailingStop[1], 0) and src[1] > nz(xATRTrailingStop[1], 0), max(nz(xATRTrailingStop[1]), src - nLoss),
iff(src < nz(xATRTrailingStop[1], 0) and src[1] < nz(xATRTrailingStop[1], 0), min(nz(xATRTrailingStop[1]), src + nLoss),
iff(src > nz(xATRTrailingStop[1], 0), src - nLoss, src + nLoss)))
pos = 0
pos := iff(src[1] < nz(xATRTrailingStop[1], 0) and src > nz(xATRTrailingStop[1], 0), 1,
iff(src[1] > nz(xATRTrailingStop[1], 0) and src < nz(xATRTrailingStop[1], 0), -1, nz(pos[1], 0)))
xcolor = pos == -1 ? color.red: pos == 1 ? color.green : color.blue
ema = ema(src,1)
above = crossover(ema, xATRTrailingStop)
below = crossover(xATRTrailingStop, ema)
buy = src > xATRTrailingStop and above
sell = src < xATRTrailingStop and below
barbuy = src > xATRTrailingStop
barsell = src < xATRTrailingStop
plotshape(buy, title = "Buy", text = 'Buy', style = shape.labelup, location = location.belowbar, color= color.green, textcolor = color.white, transp = 0, size = size.tiny)
plotshape(sell, title = "Sell", text = 'Sell', style = shape.labeldown, location = location.abovebar, color= color.red, textcolor = color.white, transp = 0, size = size.tiny)
barcolor(barbuy ? color.green : na)
barcolor(barsell ? color.red : na)
alertcondition(buy, "UT Long", "UT Long")
alertcondition(sell, "UT Short", "UT Short")
감사합니다
2024-12-04
557
글번호 185923
시스템