답변완료
Super Trend 구현
Super Trend 라는 지표 알게 되어 예스 스탁으로 구현해 보려고 하는데
제가 만들어 보니 그냥 직선으로만 나오네요. ㅠㅠ
제대로 나오도록 수정 부탁드립니다.
Inputs : ATR_P(10), Mul(3);
Variables : UpperBand(0), LowerBand(0), SuperTrend(0), Direction(1);
UpperBand = Close + (Mul*ATR(ATR_P));
LowerBand = Close - (Mul*ATR(ATR_P));
If Direction = 1 Then
{
If Close < LowerBand Then
{
Direction = -1;
SuperTrend = UpperBand;
}
Else SuperTrend = Max(LowerBand, SuperTrend);
}
Else
{
If Close > UpperBand Then
{
Direction = 1;
SuperTrend = LowerBand;
}
Else SuperTrend = Min(UpperBand, SuperTrend);
}
If Direction = 1 Then Plot1(SuperTrend, "SuperTrend", Red);
Else Plot1(SuperTrend, "SuperTrend", Blue);
2025-01-21
423
글번호 187442
지표
답변완료
종목검색식 요청드립니다.
안녕하세요? 일전에 아래 종목검색식을 요청드렸었는데 5분봉기준으로 78봉으로 검색하면 당일 아래신호가 발생한 종목이 검색됩니다. 혹시 일자별로 분봉에서 아래 신호가 발생된 종목을 검색하는 방법은 없을까요? 1일전은 79봉전, 2일전은 157봉전 이렇게 바꿔서 검색해야되는 건가요? 1봉전, 2봉전 기준으로 종목을 검색하는 방법은 없을까요? 도움 부탁드리겠습니다. 좋은하루 되세요
input : 봉수(5),기준(1);
var : v5(0),cnt(0);
V5 = (V[봉수] + V[봉수*2] + V[봉수*3] + V[봉수*4] + V[봉수*5])/5;
if sDate != sDate[1] Then
{
cnt = 0;
Condition1 = False;
}
if CrossUp(V/V5,기준) Then
cnt = cnt+1;
if cnt == 1 && cnt[1] == 0 Then
Condition1 = true;
if Condition1 == true Then
Find(1);
2025-01-21
520
글번호 187424
종목검색