Add this function in the plugin.cs
/// <summary>
/// GetSymbolLimit function is optional, used only by real-time plugins
/// </summary>
[DllExport(CallingConvention = CallingConvention.Cdecl)]
public static int SetTimeBase(int nTimeBase)
{
return (nTimeBase >= 60 && nTimeBase <= (24 * 60 * 60)) ? 1 : 0;
}
This will allow you to use 1 minute format.