답변완료
검색이 안되여..
안녕하세요
예스스탁입니다.
input : multiple(10),gap(0.1),기간(20),몇배(3);
var : AA(0);
AA=abs((H-L)/H*100);
var1 = Ema(V,기간);
Condition1 = AA > multiple and C<O and O>C[1]*(1+gap/100) and V>var1[1]*몇배;
if Condition1 == true Then
var1 = h;
if var1 > 0 and CrossUp(c,var1) and m >= 50000000000 Then
Find(1);
즐거운 하루되세요
> wkri 님이 쓴 글입니다.
> 제목 : 문의 드립니다....
> 아래 수식 라인을 일봉상 금일 돌파한 종목 (거래대금 500억이상)
AA=abs((H-L)/H*100);
Condition=
AA > multiple and
C<O and
O>C(1)*(1+gap/100) and
V>eavg(V(1), 기간)*몇배;
valuewhen(1, Condition, H)
multiple : 10
gap : 0.1
기간 : 20
몇배 : 3
2024-03-25
1002
글번호 177888
종목검색
답변완료
진입가격별(시가대비) 청산수식
sell 수식에 a,b 두번의 진입이 있는 수식입니다.
진입가격이 시가 위
진입가격이 시가 아래
두 개로 구분하여 청산하고 싶습니다. 수식이 맞는지요?
*****************************************************************************
if MarketPosition== -1 and entryprice > dayopen Then
{
if IsEntryName("a") == true Then
{
SetStopLoss(PriceScale*hals,PointStop);
SetStopTrailing(PriceScale*hatr2,PriceScale*hatr1,PointStop,1);
SetStopProfittarget(PriceScale*hagl,PointStop);
}
Else if IsEntryName("b") == true Then
{
SetStopLoss(PriceScale*hbls,PointStop);
SetStopTrailing(PriceScale*hbtr2,PriceScale*hbtr1,PointStop,1);
SetStopProfittarget(PriceScale*hbgl,PointStop);
}
Else
{
SetStopLoss(0);
SetStopTrailing(0,0);
SetStopProfittarget(0);
}
}
if MarketPosition== -1 and entryprice <= dayopen Then
{
if IsEntryName("a") == true Then
{
SetStopLoss(PriceScale*als,PointStop);
SetStopTrailing(PriceScale*atr2,PriceScale*atr1,PointStop,1);
SetStopProfittarget(PriceScale*agl,PointStop);
}
Else if IsEntryName("b") == true Then
{
SetStopLoss(PriceScale*bls,PointStop);
SetStopTrailing(PriceScale*btr2,PriceScale*btr1,PointStop,1);
SetStopProfittarget(PriceScale*bgl,PointStop);
}
Else
{
SetStopLoss(0);
SetStopTrailing(0,0);
SetStopProfittarget(0);
}
}
2024-08-01
987
글번호 177882
시스템
답변완료
부탁드립니다.
첨부된 사진처럼 해당 동그라미 표시한 부분처럼
0 기준선을 1번 노란 막대가 넘어갈 때 검색하고 싶습니다.
그리고 1번, 2번, 3번 막대가 동시에 넘어갈 때 도 검색하고 싶습니다.
가능하면 예스지표로 만들고 싶습니다.
종목검색2개, 지표1개 위 내용처럼 문의드립니다.
부탁드립니다 .
1. 노란색막대
(avg(V,5)-avg(V,20))
/
avg(V,5)*100
2. 주황색막대
(avg(V,10)-avg(V,60))
/
avg(V,10)*100
3. 빨간색막대
(avg(V,10)-avg(V,300))
/
avg(V,10)*100
2024-03-25
981
글번호 177877
지표
답변완료
기술적지표의 종목검색용 전환
키움에서 쓰고 있는 1봉전 월봉최고시가 기술적 지표입니다.
M = floor(date/100);
K = if(MonOpen() > C, MonOpen(), 0);
M1 = Valuewhen(1, M!=M(1), K(1));
M2 = Valuewhen(2, M!=M(1), K(1));
M3 = Valuewhen(3, M!=M(1), K(1));
M4 = Valuewhen(4, M!=M(1), K(1));
M5 = Valuewhen(5, M!=M(1), K(1));
M6 = Valuewhen(6, M!=M(1), K(1));
M7 = Valuewhen(7, M!=M(1), K(1));
M8 = Valuewhen(8, M!=M(1), K(1));
M9 = Valuewhen(9, M!=M(1), K(1));
M10 = Valuewhen(10, M!=M(1), K(1));
M11 = Valuewhen(11, M!=M(1), K(1));
M12 = Valuewhen(12, M!=M(1), K(1));
Max(M1, M2, M3, M4, M5,M6, M7, M8, M9, M10, M11, M12)
이 수식을 일봉상 종목검색용으로 전환하고 싶습니다.
2024-03-25
1190
글번호 177873
종목검색
답변완료
두존건을 만족한 종목 검색식 부탁합니다
crossup(C,bbandsdown(95,2))
지표변수
period 95
D1 2
거래량 이동평균선
crossup(MA(V, 5, 지수),MA(V, 20, 지수))
..................................................
윗꼬리 고가돌파
B=H-L;
B1=Max(C,O)-L;
B2=B/B1>5 && H/C(1)>(1*18/100);
A=Valuewhen(1,B2,H);
CROSSUP(C,A)
기준선 매물
A=C;
B=(highest(high,midPeriod)+lowest(low,midPeriod))/2;
D=Valuewhen(1,crossup(A,B),C);
CROSSUP(C,D)
지표변수
midPeriod 26
분봉에서 윗꼬리 기준선 돌파종목 검색식 부탁 합니다
2024-03-25
893
글번호 177867
종목검색