커뮤니티

문의

프로필 이미지
타이밍승부사
2024-12-21 16:51:36
604
글번호 186472
답변완료
항상 드립니다. 아래지표에 plot명을 추가하고 싶습니다. 특정가격에 라인이 생기고 그 라인 좌측상단에(가능하면) 전략1, 전략2 이런식으로 텍스트가 생기도록 부탁드립니다. input : Price1(1.0),Price2(1.5),Price3(2.0),Price4(2.5),Price5(2.0),Price6(2.5),per(5); if C <= Price1*(1+per/100) and C >= Price1*(1-per/100) Then{ Alert("전략1 근접 %.2f",Price1); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price2*(1+per/100)and C >= Price2*(1-per/100) Then{ Alert("전략2 근접 %.2f",Price2); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price3*(1+per/100) and C >= Price3*(1-per/100) Then{ Alert("전략3 근접 %.2f",Price3); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price4*(1+per/100) and C >= Price4*(1-per/100) Then{ Alert("전략4 근접 %.2f",Price4); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price5*(1+per/100) and C >= Price5*(1-per/100) Then{ Alert("전략5 근접 %.2f",Price5); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price6*(1+per/100) and C >= Price6*(1-per/100) Then{ Alert("전략6 근접 %.2f",Price6); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } plot1(Price1); plot2(Price2); plot3(Price3); plot4(Price4); plot5(Price5); plot6(Price6);
지표
답변 1
프로필 이미지

예스스탁 예스스탁 답변

2024-12-23 09:32:02

안녕하세요 예스스탁입니다. 좌측상단은 가능하지 않습니다. 각 라인 우측 끝에 표시되게 작성해 드립니다. input : Price1(1.0),Price2(1.5),Price3(2.0),Price4(2.5),Price5(2.0),Price6(2.5),per(5); var : tx1(0),tx2(0),tx3(0),tx4(0),tx5(0),tx6(0); if C <= Price1*(1+per/100) and C >= Price1*(1-per/100) Then { Alert("전략1 근접 %.2f",Price1); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price2*(1+per/100)and C >= Price2*(1-per/100) Then { Alert("전략2 근접 %.2f",Price2); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price3*(1+per/100) and C >= Price3*(1-per/100) Then { Alert("전략3 근접 %.2f",Price3); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price4*(1+per/100) and C >= Price4*(1-per/100) Then { Alert("전략4 근접 %.2f",Price4); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price5*(1+per/100) and C >= Price5*(1-per/100) Then { Alert("전략5 근접 %.2f",Price5); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price6*(1+per/100) and C >= Price6*(1-per/100) Then { Alert("전략6 근접 %.2f",Price6); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } plot1(Price1); plot2(Price2); plot3(Price3); plot4(Price4); plot5(Price5); plot6(Price6); Text_Delete(tx1); tx1 = Text_New_Self(sDate,sTime,price1,"전략1"); Text_SetStyle(tx1,0,1); Text_Delete(tx2); tx2 = Text_New_Self(sDate,sTime,price2,"전략2"); Text_SetStyle(tx2,0,1); Text_Delete(tx3); tx3 = Text_New_Self(sDate,sTime,price3,"전략3"); Text_SetStyle(tx3,0,1); Text_Delete(tx4); tx4 = Text_New_Self(sDate,sTime,price4,"전략4"); Text_SetStyle(tx4,0,1); Text_Delete(tx5); tx5 = Text_New_Self(sDate,sTime,price5,"전략5"); Text_SetStyle(tx5,0,1); Text_Delete(tx6); tx6 = Text_New_Self(sDate,sTime,price6,"전략6"); Text_SetStyle(tx6,0,1); 즐거운 하루되세요 > 타이밍승부사 님이 쓴 글입니다. > 제목 : 문의 > 항상 드립니다. 아래지표에 plot명을 추가하고 싶습니다. 특정가격에 라인이 생기고 그 라인 좌측상단에(가능하면) 전략1, 전략2 이런식으로 텍스트가 생기도록 부탁드립니다. input : Price1(1.0),Price2(1.5),Price3(2.0),Price4(2.5),Price5(2.0),Price6(2.5),per(5); if C <= Price1*(1+per/100) and C >= Price1*(1-per/100) Then{ Alert("전략1 근접 %.2f",Price1); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price2*(1+per/100)and C >= Price2*(1-per/100) Then{ Alert("전략2 근접 %.2f",Price2); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price3*(1+per/100) and C >= Price3*(1-per/100) Then{ Alert("전략3 근접 %.2f",Price3); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price4*(1+per/100) and C >= Price4*(1-per/100) Then{ Alert("전략4 근접 %.2f",Price4); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price5*(1+per/100) and C >= Price5*(1-per/100) Then{ Alert("전략5 근접 %.2f",Price5); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } if C <= Price6*(1+per/100) and C >= Price6*(1-per/100) Then{ Alert("전략6 근접 %.2f",Price6); PlaySound("C:₩예스트레이더₩data₩Sound₩alert.wav"); } plot1(Price1); plot2(Price2); plot3(Price3); plot4(Price4); plot5(Price5); plot6(Price6);