I would like to have this EFS paint the lines for the first 15 minutes of the ES but add 2pts to either side. So the first 15min high + 2pts(8ticks) and the first 15min low -2pts(8ticks). Can anyone help me with the change/addition to the EFS I have attached?
Announcement
Collapse
No announcement yet.
First "X" Minutes Enhancement
Collapse
X
-
try this before the line 93 bracket "}"
PHP Code:drawLineRelative( FirstBar, (vHigh+2), 0, (vHigh+2), PS_SOLID, nThickness,
cColorH, "Hline2");
drawLineRelative( FirstBar, (vLow-2), 0, (vLow-2), PS_SOLID, nThickness,
cColorL, "Lline2")
hth
kz
Comment
Comment