Changes

Jump to navigation Jump to search
no edit summary
'''9.''' Next step is to process the data. Accumulation logic should be done in the OnData() function.
First, add a reference to the System.Collections.Generic namespace:
<syntaxhighlight lang="csharp">using System.Collections.Generic;</syntaxhighlight>
Container Second, container fields where data will be stored should be added into indicator class:
<syntaxhighlight lang="csharp">
private List<Bar> m_EURJPY = new List<Bar>();

Navigation menu