help me ,translate these to chinese ,thanks

 
1、int  IndicatorCounted();

The function returns the amount of bars not changed after the indicator had been launched last.

 “indicator had been launched last.”准确是指什么意思 ,达到什么样标准了才算是“指标加到图表启动后”  ,系统觉得达到什么样标准才会触发运行IndicatorCounted()这个函数,希望能用量化的数据来讲解,不是抽象的讲解。因为系统是根据量化的数据来进行判断的。

2、

Loading and Unloading of Indicators

Indicators are loaded in the following cases:

  • an indicator is attached to a chart;
  • terminal start (if the indicator was attached to the chart prior to the shutdown of the terminal);
  • loading of a template (if the indicator attached to a chart is specified in the template);
  • change of a profile (if the indicator is attached to one of the profile charts);

 loading of a template  和 change of a profile 是指什么?

do you know chinese ,thanks 

 
1648401654c:
1、int  IndicatorCounted();

The function returns the amount of bars not changed after the indicator had been launched last.

------------------------该函数返回的是:指标最后一次加载后 ,没有变化的bar的数目(注:其实就是已经计算过的bar数目,为了提高效率,这些bar不用再计算了)

2、

  • loading of a template (if the indicator attached to a chart is specified in the template);
  • change of a profile (if the indicator is attached to one of the profile charts);

--------------------如果某模板有用到指标,加载模板时会加载该指标;

--------------------如果指标与图表特性相关联,更新图表时会重新加载指标(注:比如更改图表的timeframe)

仅供参考
Reason: