커뮤니티
수식문의
2013-06-02 14:23:49
296
글번호 63880
아래수식을 10틱이가까워지면 사선이보이도록 변경해주세요
plot1(dayopen+0.65);
plot2(dayopen+1.25);
plot3(dayopen+2.5);
plot4(dayopen-0.65);
plot5(dayopen-1.25);
plot6(dayopen-2.5);
그리고 당일 선물고저 차이를 텍스트로 보이게 할수도있나요
답변 1
예스스탁 예스스탁 답변
2013-06-03 15:11:00
안녕하세요
예스스탁입니다.
var : tx(0);
if C <= dayopen+0.65+PriceScale*10 and C >= dayopen+0.65-PriceScale*10 Then
plot1(dayopen+0.65);
if C <= dayopen+1.25+PriceScale*10 and C >= dayopen+1.25-PriceScale*10 Then
plot2(dayopen+1.25);
if C <= dayopen+2.5+PriceScale*10 and C >= dayopen+2.5-PriceScale*10 Then
plot3(dayopen+2.5);
if C <= dayopen-0.65+PriceScale*10 and C >= dayopen-0.65-PriceScale*10 Then
plot4(dayopen-0.65);
if C <= dayopen-1.25+PriceScale*10 and C >= dayopen-1.25-PriceScale*10 Then
plot5(dayopen-1.25);
if C <= dayopen-2.5+PriceScale*10 and C >= dayopen-2.5-PriceScale*10 Then
plot6(dayopen-2.5);
Text_Delete(tx);
tx = Text_New(sdate,stime,H,NumToStr(dayhigh-daylow,2));
Text_SetStyle(tx,2,0);
즐거운 하루되세요
> 백진강 님이 쓴 글입니다.
> 제목 : 수식문의
> 아래수식을 10틱이가까워지면 사선이보이도록 변경해주세요
plot1(dayopen+0.65);
plot2(dayopen+1.25);
plot3(dayopen+2.5);
plot4(dayopen-0.65);
plot5(dayopen-1.25);
plot6(dayopen-2.5);
그리고 당일 선물고저 차이를 텍스트로 보이게 할수도있나요