logs cleaned

This commit is contained in:
Sewmina 2025-01-14 11:19:31 +05:30
parent 1e4fcc678a
commit 27594f73e1

View File

@ -128,14 +128,14 @@ public class Picasso{
List<decimal> 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<decimal> 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