|
樓主 |
發表於 12-10-18 17:26
|
顯示全部樓層
The value of a plot can be assigned more than once within an analysis technique but it must always be referenced using the same name (or the name can be left out). For example, the following statement will cause this error:
Plot1( Volume, "Vol" );
If Volume > 1000000 Then
Plot1(Volume, "V", Red);
because the plot has been assigned a second name "V". The correct way of writing this statement is:
Plot1( Volume, "Vol" );
If Volume > 1000000 Then
Plot1(Volume, "Vol", Red); |
|