1. Allow for creating additional (parent) folders from the level of NinjaScript Explorer - at the moment you can only create subfolders of the existing folders or eventually create folder externally in Visual Studio - this folder then appears in NinjaScript Explorer as well.
2. These new folders and their content should also be available to Export NinjaScript - at the moment the externally created folder is not available.
3. Wizard on these new folders would simple say: "New Class" and asking for name of the class to be created. Sample class template:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NinjaTrader.NinjaScript.Common
{
partial class Common
{
}
}
Now, obviously you guys have certain priorities for the development so here is a version minimum for now:
1. Add one more folder: Common
2. Include cs files from Common folder in the "exportable" folders

Comment