Hi
I have another question for the c++ example:
for void MainDialog::ES_OnQuoteChanged(CString s)
i think it should be
if (m_snapshot || m_barSymbol ==s)
return;
i think it should be "||" but not"&&"
because the bar request will also cause OnQuoteChanged event, but in this sample application, ES_OnQuoteChanged should not handle the symbol with the bar request.
I have another question for the c++ example:
for void MainDialog::ES_OnQuoteChanged(CString s)
i think it should be
if (m_snapshot || m_barSymbol ==s)
return;
i think it should be "||" but not"&&"
because the bar request will also cause OnQuoteChanged event, but in this sample application, ES_OnQuoteChanged should not handle the symbol with the bar request.
Comment