does anybody know how to programmatically read the type of unit (currency, percent or points) in strategy analyzer? Screenshot attached.
I have located these classes:
namespace NinjaTrader.Strategy
{
public enum PerformanceUnit
{
Currency = 0,
Percent = 1,
Points = 2,
}
}
namespace NinjaTrader.MarketAnalyzer
{
public class NetChange : NinjaTrader.MarketAnalyzer.Column
{
private Strategy.PerformanceUnit unit = Strategy.PerformanceUnit.Percent;
}
}
Thank you.

Comment