안녕하세요
수식 감사드립니다.
수식을 챠트에 구현해보니 색상이 전부 검정으로만 나옵니다,
그리고
시가 = O;
고가 = H;
Condition1 = true;
저가 = L;
Condition2 = true;
}
if h > 고가 Then
{
고가 = H;
Condition1 = true;
}
if Condition1 == true and c <= 고가-(고가-시가)*0.13 Then
Condition1 = False;
if L < 저가 Then
{
저가 = L;
Condition2 = true;
}
if Condition2 == true and c >= 저가+(시가-저가)*0.13 Then
Condition2 = False;
}
Plot1(시가);
if Condition1 == true Then
Plot2(고가);
Else
NoPlot(2);
if Condition2 == true Then
Plot3(저가);
else
NoPlot(3);
위 수식과 같은 방식으로 아래의 식을 수정부탁드립니다.
수정부탁드릴 수식입니다.
input : 분(60);
var : S1(0),D1(0),TM(0),TF(0);
var : OO(0),HH(0),LL(0),TX1(0),TX2(0);
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
{
OO = O;
HH = H;
LL = L;
}
if h > HH Then
{
HH = H;
}
if l < LL Then
{
LL = L;
}
if C <= HH-(HH-OO)*0.25 and C > OO Then
{
tx1 = text_new(sDate,sTime,L,"●");
Text_SetStyle(tx1,2,0);
Text_SetColor(tx1,Blue);
Text_SetColor(tx1,12);
}
if C >= LL+(OO-LL)*0.25 and C < OO Then
{
tx2 = text_new(sDate,sTime,H,"●");
Text_SetStyle(tx2,2,1);
Text_SetColor(tx2,Red);
Text_SetColor(tx2,12);
}
}
답변 1
예스스탁
예스스탁 답변
2025-01-08 14:29:10
안녕하세요
예스스탁입니다.
input : 분(60);
var : S1(0),D1(0),TM(0),TF(0);
var : OO(0),HH(0),LL(0),TX1(0),TX2(0);
var : HT(0),LT(0);
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
{
OO = O;
HH = H;
LL = L;
}
if h > HH Then
{
HH = H;
}
if l < LL Then
{
LL = L;
}
}
if OO > 0 and C <= HH-(HH-OO)*0.25 and C >= OO Then
Plot1(L);
Else
NoPlot(1);
if OO > 0 and C >= LL+(OO-LL)*0.25 and C <= OO Then
Plot2(H);
Else
NoPlot(2);
즐거운 하루되세요
> 라몬 님이 쓴 글입니다.
> 제목 : 수정부탁드립니다.
> 안녕하세요
수식 감사드립니다.
수식을 챠트에 구현해보니 색상이 전부 검정으로만 나옵니다,
그리고
시가 = O;
고가 = H;
Condition1 = true;
저가 = L;
Condition2 = true;
}
if h > 고가 Then
{
고가 = H;
Condition1 = true;
}
if Condition1 == true and c <= 고가-(고가-시가)*0.13 Then
Condition1 = False;
if L < 저가 Then
{
저가 = L;
Condition2 = true;
}
if Condition2 == true and c >= 저가+(시가-저가)*0.13 Then
Condition2 = False;
}
Plot1(시가);
if Condition1 == true Then
Plot2(고가);
Else
NoPlot(2);
if Condition2 == true Then
Plot3(저가);
else
NoPlot(3);
위 수식과 같은 방식으로 아래의 식을 수정부탁드립니다.
수정부탁드릴 수식입니다.
input : 분(60);
var : S1(0),D1(0),TM(0),TF(0);
var : OO(0),HH(0),LL(0),TX1(0),TX2(0);
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
{
OO = O;
HH = H;
LL = L;
}
if h > HH Then
{
HH = H;
}
if l < LL Then
{
LL = L;
}
if C <= HH-(HH-OO)*0.25 and C > OO Then
{
tx1 = text_new(sDate,sTime,L,"●");
Text_SetStyle(tx1,2,0);
Text_SetColor(tx1,Blue);
Text_SetColor(tx1,12);
}
if C >= LL+(OO-LL)*0.25 and C < OO Then
{
tx2 = text_new(sDate,sTime,H,"●");
Text_SetStyle(tx2,2,1);
Text_SetColor(tx2,Red);
Text_SetColor(tx2,12);
}
}