Hi,theforexedge » Tue May 20, 2014 6:14 am wrote:SpiderX
Can you post the code for the diamond update bug fix?
JP
Please replace the below section of code.
It was a small mix up of Stoch21Up and Stoch21Dn.
Cheers
Code: Select all
if(showD1_21)
{
draw_label(32,Black,xpos+1,iy,j);
if(D_21 >= 99)
{
draw_label(arrow,Stoch21Up,xpos,iy,j);
if (wkd1_alignedup)
draw_label(115,Stoch21Up,xpos+1,iy,j);
}
else if(D_21 <= 1)
{
draw_label(arrow,Stoch21Dn,xpos,iy,j);
if (wkd1_aligneddown)
draw_label(115,Stoch21Dn,xpos+1,iy,j);
}
else
draw_label(arrow,DarkGray,xpos,iy,j);
xpos+=3;
}