[amibroker] Re: Lin Regression Hist
Great Thanks! It's working!!
[amibroker] Re: Lin Regression Hist
Hi, You are not using Plot correctly. Replace your looping code with the following: colors = IIF(Value11 > 0, colorRed, colorYellow); Plot(Value11, "e11", colors, styleHistogram); and colors = IIF(Value1 > 0, colorBlue, colorLightBlue); Plot(Value1, "e1", colors, styleHistogram); Mike --- In