语句
一个语句代表一个完全的指示或描述,语句中包含有保留字、操作符、符号。并且语句总是以";"作为语句结束的标志。以下为语句的一些例子:
[code]This is one statement;
This is another statement;
This is
one statement;
This is
another
statement
;
This is yet another;
This is one statement;This is another;[/code]
赋值语句
赋值语句用于给公式变量指定一个具体的值的语句,赋值语句使用赋值操作符(=)进行处理。
以下为赋值语句的一些例子:
[code]Vars
Bool b;
Begin
B = true;
...
End
Vars
Numeric Value1;
Begin
Value1 = (Close + Open)/2;
...
End
Vars
String str;
Begin
str ="It Is A Test!";
...
End[/code]
变量在赋值的时候忽略其扩展数据类型,只考虑其基本数据类型,即NumericSeries,NumericRef,Numeric之间可以相互赋值。此时序列数据类型只是对当前Bar的值进行操作。
页:
[1]