예스스탁
예스스탁 답변
2024-12-24 15:56:57
안녕하세요
예스스탁입니다.
1
var : tx(0);
if Bdate != Bdate[1] Then
{
if DayOpen > DayOpen(1) Then
tx = Text_New(sDate,sTime,DayOpen,"~~~");
if DayOpen < DayOpen(1) Then
tx = Text_New(sDate,sTime,DayOpen,"~~~");
Text_SetStyle(tx,2,0);
Text_SetColor(tx,Black);
Text_SetSize(tx,12);
}
Else
Text_SetLocation(tx,sDate,sTime,dayopen);
Plot1(DayOpen);
Plot2(DayOpen(1));
2
텍스트2창은 어떤 창인지 알수 없습니다.
3
input : ShortPeriod(38), LongPeriod(62);
var : EmaFast(0), EmaSlow(0), Trend(0),tx(0);
EmaFast = ema(C, ShortPeriod);
EmaSlow = ema(C, LongPeriod);
if CrossUp(EmaFast, EmaSlow) Then
Trend = -1;
if CrossDown(EmaFast, EmaSlow) Then
Trend = 1;
Plot1(Trend, "UpTrend", IFf(Trend == -1, RED, GREEN) ,0, 5);
if EmaFast > EmaSlow and C < EmaFast Then
plot2(-0.97,"정배열조정",RGB(255,102,0) ,0, 8);
if EmaFast < EmaSlow and C > EmaFast Then
plot3(0.97,"역배열조정",RGb(0,128,255) ,0, 8);
if EmaFast > EmaSlow Then
PlotBaseLine1(1,"기준선1",RGb(10,10,10));
if EmaFast < EmaSlow Then
PlotBaseLine2(-1,"기준선2",RGb(10,10,10));
if trend == 1 and trend != trend[1] Then
{
tx = Text_New(sDate,sTime,DayOpen,"~~~");
Text_SetStyle(tx,2,0);
Text_SetColor(tx,Red);
Text_SetSize(tx,12);
}
if trend == -1 and trend != trend[1] Then
{
tx = Text_New(sDate,sTime,DayOpen,"~~~");
Text_SetStyle(tx,2,0);
Text_SetColor(tx,Blue);
Text_SetSize(tx,12);
}
즐거운 크리스마스 보내세요
> 아이덜 님이 쓴 글입니다.
> 제목 : 도사님 도움부탁드려요.
> 1.오늘시가가 전일시가보다 높으면 " ~~ " 이다.
오늘시가가 전일시가보다 높으면 " ~~ " 이다.
2. 텍스트2 창에 텍스트로 설정. ( 글자크기,굵기,색상 변경가능 )
3. 변수 설정 (정배열일때, 역배열일때.) " ~~ " 로 바뀜.
input : ShortPeriod(38), LongPeriod(62);
var : EmaFast(0), EmaSlow(0), Trend(0);
EmaFast = ema(C, ShortPeriod);
EmaSlow = ema(C, LongPeriod);
if CrossUp(EmaFast, EmaSlow) Then
Trend = -1;
if CrossDown(EmaFast, EmaSlow) Then
Trend = 1;
Plot1(Trend, "UpTrend", IFf(Trend == -1, RED, GREEN) ,0, 5);
if EmaFast > EmaSlow and C < EmaFast Then
plot2(-0.97,"정배열조정",RGB(255,102,0) ,0, 8);
if EmaFast < EmaSlow and C > EmaFast Then
plot3(0.97,"역배열조정",RGb(0,128,255) ,0, 8);
if EmaFast > EmaSlow Then
PlotBaseLine1(1,"기준선1",RGb(10,10,10));
if EmaFast < EmaSlow Then
PlotBaseLine2(-1,"기준선2",RGb(10,10,10));