diff --git a/Picasso.cs b/Picasso.cs index 26a545e..1541ea2 100644 --- a/Picasso.cs +++ b/Picasso.cs @@ -128,14 +128,14 @@ public class Picasso{ List resistancePoints = Confirmations.GetResistanceLevels(reports); foreach(decimal point in resistancePoints){ float yVal = ((float)(point-min) * heightMultiplier) + candlesOffset; - Console.WriteLine($"{filename} res at {yVal/height}"); + // Console.WriteLine($"{filename} res at {yVal/height}"); img.Mutate(ctx=> ctx.DrawLine(Color.Red,1f, [new PointF(0, yVal), new PointF(width, yVal)])); } List supPoints = Confirmations.GetSupportiveLevels(reports); foreach(decimal point in supPoints){ float yVal = ((float)(point-min) * heightMultiplier) + candlesOffset; - Console.WriteLine($"{filename} sup at {yVal/height}"); + // Console.WriteLine($"{filename} sup at {yVal/height}"); img.Mutate(ctx=> ctx.DrawLine(Color.Green,1f, [new PointF(0, yVal), new PointF(width, yVal)])); } #endregion