답변완료
검색식 부탁 드립니다
지지와저항(트뷰)L
조건=Lowest(L,L기간+R기간+1)==L(R기간);
valuewhen(1,조건,L(R기간),-R기간)
연장L
조건=Lowest(L,L기간+R기간+1)==L(R기간);
valuewhen(1,조건,L(R기간),1)
지표조건
L기간15
R기간12
1.지지와저항(트뷰)L 와 연장L이 같은 종목 검색식 부탁드립니다
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
이격도 기준선
A= Disparity(Period);
ValueWhen(1, crossup(A, 기준2) OR crossdown(A, 기준2) ,가격)
지표조건
period 120
기준2 101
가격 (H+L)/2
2.이격도기준선수치가 어제는 수치가3100에 있다
오늘 수치가2190으로 내려왔다 주가는 어제보다 오늘이높다
종목 검색식 만들어 주세요
3이격도기준선 돌파 종못 검색식 부탁 드립니다
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
지표조건
period 14
기간 20
기간1 5
기간2 20
AA=(H+L+C)/3;
BB=AA*V;
X1=sum(BB,기간1);
X2=sum(V,기간1);
X3=sum(BB,기간2);
X4=sum(V,기간2);
B1=X1/X2;
B2=X3/X4;
//변동성돌파
A=PREDAYHIGH()-PREDAYLOW();
B=DAYOPEN()+A*0.5;
B1=RSI(2);
A1= LinearRegressionValue(C,50,0);
A2= LinearRegressionValue(A1,50,0);
eq=A1-A2;
VL=A1+eq;
//CCI
CC=CCi(9);
Cs=eavg(CC,12);
//ADX+
Dp=eavg(DIplus(period)/
(DIplus(period)+DIminus(period)),period)*100;
F=ma(C,기간);
S=전일대비거래량500%이상+거래대금20억이상 AND Highest(v,60)==v;
S1=전일대비거래량500%이상+거래대금20억이상 AND CROSSUP(B1, B2) AND C > 0;
S2=전일대비거래량500%이상+거래대금20억이상 AND CROSSUP(C, B) AND B1 > 50 AND C > VL;
S3=전일대비거래량500%이상+거래대금20억이상 AND CC>Cs AND Dp>Dp(1)&&F>F(1);
(S) OR (S1)OR(S2)OR S3
4.종목 검색식 부탁 드립니다
항상 운영자님들의 수고에 감사 드립니다
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
단기이평선
A=(npredayclose(2)+npredayclose(1)+dayclose())/3;
B=(npredayclose(4)+npredayclose(3)+npredayclose(2)+npredayclose(1)+dayclose())/5;
Valuewhen(1,crossup(A,B),C)
5.돌파 검석신 부탁 드리빈다
2024-05-27
985
글번호 179957
종목검색
답변완료
쌍바닥 고점 조건
Input : 전환(0.15);
Var:j(0),jj(0),HH(0),LL(0),hiBar(0),loBar(0),최종꼭지점(""),처리구분(""),TL(0),TL1(0),TX(0),TX2(0),T(0);
Array:고[10,4](0),저[10,4](0);
HH = H;
LL = L;
If Index == 0 Then
{
고[1,1] = HH;
고[1,2] = 0;
고[1,3] = sDate;
고[1,4] = sTime;
저[1,1] = LL;
저[1,2] = 0;
저[1,3] = sDate;
저[1,4] = sTime;
}
If Index > 0 Then
{
hiBar = hiBar + 1;
loBar = loBar + 1;
}
If HH[hiBar] < HH Then hiBar = 0;
If LL[loBar] > LL Then loBar = 0;
Condition1 = 저[1,1]+전환 <= HH and hiBar == 0;
Condition2 = 고[1,1]-전환 >= LL and loBar == 0;
처리구분 = "";
If Condition1 and Condition2 Then
{
If 최종꼭지점 == "저점" Then
{
If 저[1,1] > LL Then 처리구분 = "저점처리";
Else 처리구분 = "고점처리";
}
Else If 최종꼭지점 == "고점" Then
{
If 고[1,1] < HH Then 처리구분 = "고점처리";
Else 처리구분 = "저점처리";
}
}
Else If Condition1 Then 처리구분 = "고점처리";
Else If Condition2 Then 처리구분 = "저점처리";
If 처리구분 == "고점처리" Then
{
If 최종꼭지점 == "저점" Then
{
For j = 10 DownTo 2
{
For jj = 1 To 4
{
고[j,jj] = 고[j-1,jj];
}
}
고[1,1] = HH[hiBar];
고[1,2] = Index - hiBar;
고[1,3] = sDate[hiBar];
고[1,4] = sTime[hiBar];
hiBar = -1;
loBar = -1;
TL = TL_New(저[1,3],저[1,4],저[1,1],고[1,3],고[1,4],고[1,1]);
TL_SetSize(TL,1);
TL_SetColor(TL,Red);
if 저[1,1] <=highest(H,500)-0.9 and max(저[1,1],저[2,1]) <= min(저[1,1],저[2,1])+PriceScale*1 Then
{
tx2 = Text_New(저[1,3],저[1,4],저[1,1]-0.1,"●");
Text_SetStyle(tx2,2,2);
Text_SetColor(tx2,Blue);
Text_SetSize(tx2,20);
}
}
Else If 고[1,1] < HH[hiBar] Then
{
고[1,1] = HH[hiBar];
고[1,2] = Index - hiBar;
고[1,3] = sDate[hiBar];
고[1,4] = sTime[hiBar];
hiBar = -1;
loBar = -1;
TL_SetEnd(TL,고[1,3],고[1,4],고[1,1]);
}
최종꼭지점 = "고점";
Plot1(고[1,1]);
NoPlot(2);
}
If 처리구분 == "저점처리" Then
{
If 최종꼭지점 == "고점" Then
{
For j = 10 DownTo 2
{
For jj = 1 To 4
{
저[j,jj] = 저[j-1,jj];
}
}
저[1,1] = LL[loBar];
저[1,2] = Index - loBar;
저[1,3] = sDate[loBar];
저[1,4] = sTime[loBar];
hiBar = -1;
loBar = -1;
TL = TL_New(고[1,3],고[1,4],고[1,1],저[1,3],저[1,4],저[1,1]);
TL_SetSize(TL,1);
TL_SetColor(TL,Green);
if 고[1,1] <= 고[2,1] + PriceScale* 0 and 고[1,1] >= 고[2,1] - PriceScale* 1 Then
{
tx2 = Text_New(고[1,3],고[1,4],고[1,1]+0.07,"●");
Text_SetStyle(tx2,2,2);
Text_SetColor(tx2,Green);
Text_SetSize(tx2,10);
}
}
Else If 저[1,1] > LL[loBar] Then
{
저[1,1] = LL[loBar];
저[1,2] = Index - loBar;
저[1,3] = sDate[loBar];
저[1,4] = sTime[loBar];
hiBar = -1;
loBar = -1;
TL_SetEnd(TL,저[1,3],저[1,4],저[1,1]);
}
최종꼭지점 = "저점";
Plot2(저[1,1]);
NoPlot(1);
}
쌍바닥 조건에서만 (다른 지표는 그대로),
500봉 전을, 전일은 무시하고 당일에서만(시초부터만) 500봉 전으로 수정. 감사합니다.
2024-05-26
787
글번호 179949
지표