[amibroker] Re: Lin Regression Hist

2009-02-18 Thread maximoff_max
Great Thanks! It's working!!

[amibroker] Re: Lin Regression Hist

2009-02-17 Thread Mike
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