I have a custom data type installed called ninZaRenko. This indicator takes a Brick size and a Trend size.
NinZaRenko is installed with an enum value of 12345.
When I try this command, AddDataSeries((BarsPeriodType)12345,4,1) // Brick Size = 4, Trend Size = 1, I get the error code CS1502.
This is because AddDataSeries() only accepts two arguments and not three.
What is the proper command to add this datatype to my strategy?

Comment