Hi Luca,
Thanks for contacting Syncfusion Support.
The ExponentialAverageIndicator will draw based on the close values which is mapped by Close property in ExponentialAverageIndicator. You can achieve your requirement(indicator drawn based on Open value) by setting open model property value to Close property of indicator as shown in the below code snippet,
<chart:SfChart.TechnicalIndicators>
<chart:ExponentialAverageIndicator ItemsSource="{Binding StockPriceDetails}"
XBindingPath="Date" High="High" Low="Low"
Open="Open" Close="Open" SignalLineColor="Black"
Period="5"/>
</chart:SfChart.TechnicalIndicators>
|
We have prepared a demo sample by drawing the technical indicator with Open value for your reference and it can be downloaded from below link,
Regards,
Devi