I'm in the process of converting EasyLanguage swing trading code and would like to know if its possible to:
1) create a new trend line using:
vTag = drawLineRelative(nX1, dY1, nX2, dY2, nStyle, nThickness, Color);
2) and update this trend line a few bars later with new coordinates using:
drawLineRelative(nX1, dY1, nX2, dY2, nStyle, nThickness, Color, vTag);
1) create a new trend line using:
vTag = drawLineRelative(nX1, dY1, nX2, dY2, nStyle, nThickness, Color);
2) and update this trend line a few bars later with new coordinates using:
drawLineRelative(nX1, dY1, nX2, dY2, nStyle, nThickness, Color, vTag);
Comment