수고하십니다.
아래 검색 지표인데 이것을 검색 표시 자리에 상하 화살표 크게 표시하고 싶습니다.
Var: Period(14), LPercent(70), SPercent(30);
Var : value(0);
value = RSI(Period);
# 매수/매도청산
If CrossUP(value, LPercent) Then
begin
Plot1( High, "BrkoutHi" ) ;
PlaySound("C:₩WRFutures₩YesGlobalPro₩data₩Sound₩₩accept.wav");
end ;
# 매도/매수청산
If CrossDown(value, SPercent) Then
begin
Plot2(Low,"BrkoutLo");
PlaySound("C:₩WRFutures₩YesGlobalPro₩data₩Sound₩accept.wav");
end ;
답변 2
예스스탁
예스스탁 답변
2023-12-18 10:49:09
안녕하세요
예스스탁입니다.
Var: Period(14), LPercent(70), SPercent(30);
Var : value(0),tx(0);
value = RSI(Period);
# 매수/매도청산
If CrossUP(value, LPercent) Then
begin
PlaySound("C:₩WRFutures₩YesGlobalPro₩data₩Sound₩₩accept.wav");
tx = text_new(sDate,sTime,L,"▲");
Text_SetColor(tx,Red);
Text_SetStyle(tx,2,0);
Text_SetSize(tx,20);
end ;
# 매도/매수청산
If CrossDown(value, SPercent) Then
begin
PlaySound("C:₩WRFutures₩YesGlobalPro₩data₩Sound₩accept.wav");
tx = text_new(sDate,sTime,L,"▼");
Text_SetColor(tx,Blue);
Text_SetStyle(tx,2,1);
Text_SetSize(tx,20);
end ;
즐거운 하루되세요
> fill 님이 쓴 글입니다.
> 제목 : 수고 하십니다.
> 수고하십니다.
아래 검색 지표인데 이것을 검색 표시 자리에 상하 화살표 크게 표시하고 싶습니다.
Var: Period(14), LPercent(70), SPercent(30);
Var : value(0);
value = RSI(Period);
# 매수/매도청산
If CrossUP(value, LPercent) Then
begin
Plot1( High, "BrkoutHi" ) ;
PlaySound("C:₩WRFutures₩YesGlobalPro₩data₩Sound₩₩accept.wav");
end ;
# 매도/매수청산
If CrossDown(value, SPercent) Then
begin
Plot2(Low,"BrkoutLo");
PlaySound("C:₩WRFutures₩YesGlobalPro₩data₩Sound₩accept.wav");
end ;