Brick Struct
Definition
Represents a single brick in a Renko chart.
public struct Brick
Constructors
| Name | Description |
|---|---|
| Brick | Initializes a new instance of the Avalonia.Controls.Charts.Brick struct. |
Brick Constructor
Initializes a new instance of the Avalonia.Controls.Charts.Brick struct.
public Brick(double start, double end, bool isUp)
Parameters
start double
end double
isUp bool
Properties
| Name | Description |
|---|---|
| High | Gets the high price. |
| IsUp | Gets a value indicating whether the brick is up. |
| Low | Gets the low price. |
High Property
Gets the high price.
public double High { get; set; }
IsUp Property
Gets a value indicating whether the brick is up.
public bool IsUp { get; set; }
Low Property
Gets the low price.
public double Low { get; set; }