I am working on an indicator that will work on a graph with 2 instruments, mini and its micro. I can't access the pointvalue of the selected instrument in the chartrader.
I know the masterinstrument.pointvalue but it's not what I need. What I am looking for is that it returns the pointvalue of the selected instrument.
Could you help me?
Thanks in advance
private void OnChartTraderInstrumentSelectionChange(object sender, EventArgs e)
{
if (myInstrumentSelector.SelectedValue != null)
{
Instrument selectedInstrument = Instrument.GetInstrument(instrument);
}
}
i get the instrument selected selectedInstrument.PointValue is not working.

Comment