항상 감사드립니다~~
아래 지표도 장 시작 후 N분 간격으로 초기화되게 수정 부탁 드립니다,
var : V1(0,Data1),V2(0,Data1);
if Data1(Bdate != Bdate[1]) Then
{
V1 = 0;
V2 = 0;
}
if V1 == 0 and CrossDown(Data1(L),Data2(H)) Then
V1 = (data1(L)+data2(H))/2;
if V1 == 0 and CrossUp(Data1(H),Data2(L)) Then
V1 = (data1(H)+data2(L))/2;
if V2 == 0 and CrossDown(Data1(L),Data3(H)) Then
V2 = (data1(L)+data3(H))/2;
if V2 == 0 and CrossUp(Data1(H),Data3(L)) Then
V2 = (data1(H)+data3(L))/2;
if V1 > 0 Then
Plot1(V1);
Else
NoPlot(1);
if V2 > 0 Then
Plot2(V2);
Else
NoPlot(2);
답변 1
예스스탁
예스스탁 답변
2024-11-04 10:17:21
안녕하세요
예스스탁입니다.
input : 분(120);
var : S1(0),D1(0),TM(0),TF(0);
var : V1(0,Data1),V2(0,Data1);
if Bdate != Bdate[1] Then
{
S1 = TimeToMinutes(stime);
D1 = sdate;
}
if D1 > 0 then
{
if sdate == D1 Then
TM = TimeToMinutes(stime)-S1;
Else
TM = TimeToMinutes(stime)+1440-S1;
TF = TM%분;
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분 > 1 and TF < TF[1]) or
(Bdate == Bdate[1] and 분 > 1 and TM >= TM[1]+분) or
(Bdate == Bdate[1] and 분 == 1 and TM > TM[1]) Then
{
V1 = 0;
V2 = 0;
}
if V1 == 0 and CrossDown(Data1(L),Data2(H)) Then
V1 = (data1(L)+data2(H))/2;
if V1 == 0 and CrossUp(Data1(H),Data2(L)) Then
V1 = (data1(H)+data2(L))/2;
if V2 == 0 and CrossDown(Data1(L),Data3(H)) Then
V2 = (data1(L)+data3(H))/2;
if V2 == 0 and CrossUp(Data1(H),Data3(L)) Then
V2 = (data1(H)+data3(L))/2;
if V1 > 0 Then
Plot1(V1);
Else
NoPlot(1);
if V2 > 0 Then
Plot2(V2);
Else
NoPlot(2);
}
즐거운 하루되세요
> 타이밍승부사 님이 쓴 글입니다.
> 제목 : 문의
> 항상 감사드립니다~~
아래 지표도 장 시작 후 N분 간격으로 초기화되게 수정 부탁 드립니다,
var : V1(0,Data1),V2(0,Data1);
if Data1(Bdate != Bdate[1]) Then
{
V1 = 0;
V2 = 0;
}
if V1 == 0 and CrossDown(Data1(L),Data2(H)) Then
V1 = (data1(L)+data2(H))/2;
if V1 == 0 and CrossUp(Data1(H),Data2(L)) Then
V1 = (data1(H)+data2(L))/2;
if V2 == 0 and CrossDown(Data1(L),Data3(H)) Then
V2 = (data1(L)+data3(H))/2;
if V2 == 0 and CrossUp(Data1(H),Data3(L)) Then
V2 = (data1(H)+data3(L))/2;
if V1 > 0 Then
Plot1(V1);
Else
NoPlot(1);
if V2 > 0 Then
Plot2(V2);
Else
NoPlot(2);