PureBytes Links
Trading Reference Links
|
>Anyone ever tried:
>If Plot1 [ 1 ] = 1 then begin ...
>Works. I guess you can read an EL plot array
>same as you can with vars.
>
>I know you can do:
>Value1 = Plot1[10];
>
>And you can do
>Plot1[1] ( 2, "Test");
>
>But you can not do
>Value1[1] = 1;
>I guess you cant back write into vars but
>you can into plots.
Deming: Actually you can't write into plots either. For instance:
Plot1[1] = 10 will not work. Your example is only checking if the Plot1[1]
value is 1, not assigning 1 to the Plot1[1] value. Would have been nice...
:-(
|