How do you load the Microsoft StatisticFormula class into a Ninja Strategy? I would like to have access to the NormalDistribution method for use in my script.
The StatisticFormula class is found at:
https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.datavisualization.charting.st atisticformula?view=netframework-4.8.1
It indicates adding line:
public class StatisticFormula Where should this line be inserted into a script?
The NormalDistribution method is found at:
https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.datavisualization.charting.st atisticformula.normaldistribution?view=netframewor k-4.8.1
It indicates adding the line:
public double NormalDistribution (double zValue); Where should this line be inserted into a script?
Is there anything else that I will need to do in order to use the NormalDistribution method for calculations within my script?
Thank you for your guidance.

Comment