OscillatorPane

StockSharp.Xaml.Charting.Maui

由自相垂直的平面尺所叠入的子平面图下---------------. RSI(用30/70导线固定为0.100)或MACD(以零导线相绕自发排列).

实现: IEquatable<OscillatorPane>

构造函数

OscillatorPane
public OscillatorPane(string Name, IReadOnlyList<OscillatorSeries> Series, decimal? FixedMin, decimal? FixedMax, IReadOnlyList<decimal> Levels)
oscillatorPane = OscillatorPane(Name, Series, FixedMin, FixedMax, Levels)

由自相垂直的平面尺所叠入的子平面图下---------------. RSI(用30/70导线固定为0.100)或MACD(以零导线相绕自发排列).

Name
画在窗帘左上角的字条
Series
一个或多个线条系列要进行绘图.
FixedMin
固定下接,或与系列自动距离无效.
FixedMax
固定上行,或无自动距离从系列.
Levels
水平导电级(e.g. RSI为30和70;MACD为0).

属性

FixedMax
public decimal? FixedMax { get; set; }
value = oscillatorPane.FixedMax
oscillatorPane.FixedMax = value

固定上行,或无自动距离从系列.

FixedMin
public decimal? FixedMin { get; set; }
value = oscillatorPane.FixedMin
oscillatorPane.FixedMin = value

固定下接,或与系列自动距离无效.

Levels
public IReadOnlyList<decimal> Levels { get; set; }
value = oscillatorPane.Levels
oscillatorPane.Levels = value

水平导电级(e.g. RSI为30和70;MACD为0).

Name
public string Name { get; set; }
value = oscillatorPane.Name
oscillatorPane.Name = value

画在窗帘左上角的字条

Series
public IReadOnlyList<OscillatorSeries> Series { get; set; }
value = oscillatorPane.Series
oscillatorPane.Series = value

一个或多个线条系列要进行绘图.