logs cleaned
This commit is contained in:
parent
1e4fcc678a
commit
27594f73e1
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user