안녕하세요
늘 도움주셔서 감사합나다.
다음의 조건 만족시 시스템신호가 나올수 있도록 부탁드립니다.
1. 시스템
1 시간봉의 시가,15분봉의 시가,3분봉의 시가가 삼각가중 20 선 안에 모두 일치할때
매수, 매도 신호
2. 검색
1 시간봉의 시가,15분봉의 시가,3분봉의 시가가 삼각가중 20 선 안에 모두 일치할때
매수 레드점, 매도 블루점
* 삼각가중선은 변수 부탁드립니다.
고맙습니다.
답변 1
예스스탁
예스스탁 답변
2025-04-10 15:14:45
안녕하세요
예스스탁입니다.
1
input : 분1(60),분2(15),분3(3),Period(20);
var : S1(0),D1(0),TM(0);
var : TF1(0),TF2(0),TF3(0);
var : TLen(0),Tma(0);
TLen = Ceiling((Period + 1) * .5);
Tma = ma(ma(C, TLen), TLen);
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;
TF1 = TM%분1;
TF2 = TM%분2;
TF3 = TM%분3;
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분1 > 1 and TF1 < TF1[1]) or
(Bdate == Bdate[1] and 분1 > 1 and TM >= TM[1]+분1) or
(Bdate == Bdate[1] and 분1 == 1 and TM > TM[1]) Then
{
var1 = O;
}
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분2 > 1 and TF2 < TF2[1]) or
(Bdate == Bdate[1] and 분2 > 1 and TM >= TM[1]+분2) or
(Bdate == Bdate[1] and 분2 == 1 and TM > TM[1]) Then
{
var2 = O;
}
TF2 = TM%분2;
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분1 > 1 and TF1 < TF1[1]) or
(Bdate == Bdate[1] and 분1 > 1 and TM >= TM[1]+분1) or
(Bdate == Bdate[1] and 분1 == 1 and TM > TM[1]) Then
{
var1 = O;
}
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분3 > 1 and TF3 < TF3[1]) or
(Bdate == Bdate[1] and 분3 > 1 and TM >= TM[1]+분3) or
(Bdate == Bdate[1] and 분3 == 1 and TM > TM[1]) Then
{
var3 = O;
}
#3개 시가선이 모두 삼각가준 위
if var1 > Tma and var2 > Tma and var3 > Tma Then
Buy();
#3개 시가선이 모두 삼각가중 아래
if var1 < Tma and var2 < Tma and var3 < Tma Then
Sell();
}
2
input : 분1(60),분2(15),분3(3),Period(20);
var : S1(0),D1(0),TM(0);
var : TF1(0),TF2(0),TF3(0);
var : TLen(0),Tma(0);
TLen = Ceiling((Period + 1) * .5);
Tma = ma(ma(C, TLen), TLen);
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;
TF1 = TM%분1;
TF2 = TM%분2;
TF3 = TM%분3;
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분1 > 1 and TF1 < TF1[1]) or
(Bdate == Bdate[1] and 분1 > 1 and TM >= TM[1]+분1) or
(Bdate == Bdate[1] and 분1 == 1 and TM > TM[1]) Then
{
var1 = O;
}
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분2 > 1 and TF2 < TF2[1]) or
(Bdate == Bdate[1] and 분2 > 1 and TM >= TM[1]+분2) or
(Bdate == Bdate[1] and 분2 == 1 and TM > TM[1]) Then
{
var2 = O;
}
TF2 = TM%분2;
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분1 > 1 and TF1 < TF1[1]) or
(Bdate == Bdate[1] and 분1 > 1 and TM >= TM[1]+분1) or
(Bdate == Bdate[1] and 분1 == 1 and TM > TM[1]) Then
{
var1 = O;
}
if Bdate != Bdate[1] or
(Bdate == Bdate[1] and 분3 > 1 and TF3 < TF3[1]) or
(Bdate == Bdate[1] and 분3 > 1 and TM >= TM[1]+분3) or
(Bdate == Bdate[1] and 분3 == 1 and TM > TM[1]) Then
{
var3 = O;
}
#3개 시가선이 모두 삼각가준 위
if var1 > Tma and var2 > Tma and var3 > Tma Then
Plot1(L,"검색",Red);
#3개 시가선이 모두 삼각가중 아래
if var1 < Tma and var2 < Tma and var3 < Tma Then
Plot1(L,"검색",Blue);
}
즐거운 하루되세요