Is there a way to determine which NinjaTrader version is running?
The context is that the new user email vendor API only works for NinjaTrader 8.1.5.0 or later. So as vendors, do we need to implement a check like this to support both?
if (NTversion < 8150) {
VendorLicense("Vendor", "Product", "www.vendor.com", "support@vendor.com", null);
} else {
VendorLicense(productNumber, null);
}
How are vendors supposed to support both APIs since not all customers will have the latest NT version? Assuming here that using the new API will not run or maybe even crash older versions when using the free trial.