IndicatorPickerPage

StockSharp.Xaml.Windows.Maui

Page for selecting an indicator type.

Inherits: ContentPage

Constructors

IndicatorPickerPage
public IndicatorPickerPage()
indicatorPickerPage = IndicatorPickerPage()

Creates a new IndicatorPickerPage.

Properties

Indicators
public IList<IndicatorType> Indicators { get; }
value = indicatorPickerPage.Indicators

Gets the available indicator types.

SelectedIndicator
public IndicatorType SelectedIndicator { get; set; }
value = indicatorPickerPage.SelectedIndicator
indicatorPickerPage.SelectedIndicator = value

Gets the selected indicator type.

ViewModel
public IndicatorPickerViewModel ViewModel { get; }
value = indicatorPickerPage.ViewModel

Gets the ViewModel.

Methods

LoadIndicators
public void LoadIndicators(IIndicatorProvider provider)
indicatorPickerPage.LoadIndicators(provider)

Loads indicators from the provider.

LoadIndicators
public void LoadIndicators(IEnumerable<IndicatorType> indicators)
indicatorPickerPage.LoadIndicators(indicators)

Loads indicators from a collection.

Events

IndicatorSelected
public event EventHandler<IndicatorType> IndicatorSelected
indicatorPickerPage.IndicatorSelected += handler

Raised when an indicator is selected.