예스스탁
예스스탁 답변
2024-10-07 15:18:23
안녕하세요
예스스탁입니다.
input : Period(5),Length(5);
var : TLen(0),tx1(0),tx2(0),tx3(0);
var1 = ma(C,5);
TLen = Ceiling((Length + 1) * .5);
var2 = ma(ma(C, TLen), TLen);
var3 == (highest(H,9)+lowest(L,9))/2;
if c > var1 Then
{
tx1 = Text_New(sDate,sTime,L,NewLine+"★");
Text_SetStyle(tx1,2,0);
Text_SetColor(Tx1,Red);
}
if c > var2 Then
{
tx2 = Text_New(sDate,sTime,L,NewLine+NewLine+"●");
Text_SetStyle(tx2,2,0);
Text_SetColor(Tx2,Red);
}
if c > var3 Then
{
tx3 = Text_New(sDate,sTime,L,NewLine+NewLine+NewLine+"■");
Text_SetStyle(tx3,2,0);
Text_SetColor(Tx3,Red);
}
if c < var1 Then
{
tx1 = Text_New(sDate,sTime,L,NewLine+"★");
Text_SetStyle(tx1,2,0);
Text_SetColor(Tx1,Blue);
}
if c < var2 Then
{
tx2 = Text_New(sDate,sTime,L,NewLine+NewLine+"●");
Text_SetStyle(tx2,2,0);
Text_SetColor(Tx2,Blue);
}
if c < var3 Then
{
tx3 = Text_New(sDate,sTime,L,NewLine+NewLine+NewLine+"■");
Text_SetStyle(tx3,2,0);
Text_SetColor(Tx3,Blue);
}
즐거운 하루되세요
> 라몬 님이 쓴 글입니다.
> 제목 : 지표 부탁드립니다.
> 안녕하세요
다음과 같이 부탁드립니다.
1.5 이평선
2. 삼각가중 5 이평선
3. 전환선
종가기준 캔들이 각각 위 세가지 조건 위에 있을때 적색으로 표시
세가지 아래에 있을때 파랑으로 표시
이렇게 각각 세가지 별도의 조건으로 부탁드립니다.
* 원이나 별로 표시해도 됩니다.