예스스탁
예스스탁 답변
2019-10-31 11:22:38
안녕하세요
예스스탁입니다.
도지봉인데 3틱이상 양봉과 음봉이 어떤 의미이신지 모르겠습니다.
전봉이 도지봉이고
현재봉이 3틱이상 양봉이면 white, 3틱이상 음봉이면 LGREEN으로 작성해 드립니다.
if C[1] > O[1] then
{
if C >= H[1]-PriceScale*3 then
plotpaintbar(H,L,"강조",WHITE);
Else
plotpaintbar(H,L,"강조",LGREEN);
}
if C[1] < O[1] then
{
if C <= L[1]+PriceScale*3 then
plotpaintbar(H,L,"강조",LGREEN);
Else
plotpaintbar(H,L,"강조",WHITE);
}
if C[1] == O[1] then
{
if C <= O-PriceScale*3 then
plotpaintbar(H,L,"강조",LGREEN);
if C >= O+PriceScale*3 then
plotpaintbar(H,L,"강조",WHITE);
}
즐거운 하루되세요
> 유선 님이 쓴 글입니다.
> 제목 : 재문의드립니다
> if C[1] > O[1] then
{
if C >= H[1]-PriceScale*3 then
plotpaintbar(H,L,"강조",WHITE);
Else
plotpaintbar(H,L,"강조",LGREEN);
}
if C[1] < O[1] then
{
if C <= L[1]+PriceScale*3 then
plotpaintbar(H,L,"강조",LGREEN);
Else
plotpaintbar(H,L,"강조",WHITE);
}
위수식에서 약간수정을원합니다 ,봉이 도지(+)가되었을때 시가에서3틱이상양봉이면 WHITE
시가에서3틱 이하음봉이면LGREEN~~
으로 나오게 부탁드립니다 ,매번감사드립니다,~~~