public property strategy.parameters

Brief

Returns the instance of the profile parameter set.

Declaration
Lua
strategy.parameters

Returns

The property returns the instance of the parameters template. You can use this table to define a set of required parameters for your strategy or signal.

Details

Example [hide]

   function Init()
       ...
       strategy.parameters:addInteger("PARAM1", "First Parameter", "", 100);
       ...
   end

back