Edit Your Comment
How to code Zigzag whether pointing UP or DOWN
Tham gia từ May 02, 2012
14bài viết
Jun 22, 2014 at 14:49
Tham gia từ May 02, 2012
14bài viết
I've found from other forum with the below script to identify whether the Zigzag pointing UP or DOWN. However, the below script has discrepancy with the original Zigzag indi. What I would like to have is to identify the current direction of the original Zigzag indi to execute Buy or Sell & close immediately when the opposite direction of Zigzag appear.
Would greatly appreciate if anyone could share the script.
Thanks and best regards.
int n, i;
double zag, zig;
i=0;
while(n<2)
{
if(zig>0) zag=zig;
zig=iCustom(NULL, 0, 'ZigZag', 0, i);
if(zig>0) n+=1;
i++;
}
RESULT
-----------
if(zag<zig) indicator shows down
if(zig<zag) indicator shows up
Would greatly appreciate if anyone could share the script.
Thanks and best regards.
int n, i;
double zag, zig;
i=0;
while(n<2)
{
if(zig>0) zag=zig;
zig=iCustom(NULL, 0, 'ZigZag', 0, i);
if(zig>0) n+=1;
i++;
}
RESULT
-----------
if(zag<zig) indicator shows down
if(zig<zag) indicator shows up
*Nghiêm cấm sử dụng cho mục đích thương mại và spam, nếu vi phạm có thể dẫn đến việc chấm dứt tài khoản.
Mẹo: Đăng ảnh/url youtube sẽ tự động được nhúng vào bài viết của bạn!
Mẹo: Dùng @ để tự động điền tên người dùng tham gia vào cuộc thảo luận này.