PureBytes Links
Trading Reference Links
|
Thanks, Anthony!
--- In amibroker@xxxx, Anthony Faragasso <ajf1111@xxxx> wrote:
> Mike,
>
> How about using..... AddColumn()...... it essentially takes the
place of
> the following:
>
> NumColumns=5;
> Column0=Buy;
> Column0Name="Buy";
> Column0Format=1.2;
>
> breaks down to this:
> addcolumn(buy,"Buy",1.2);
>
> You do not have to define the number of columns and etc.
>
> Anthony
> mik954 wrote:
>
> > Hi, Tomasz!
> >
> > Do you know if there is any way to define column with a number?
> >
> > As I understand, column number is defining the order in which
columns
> > will be displayed. And it becomes really boring when there are a
> > number of columns in Exploration and I need to add new one at the
> > beginning or change their order: sometimes it's needed to change
> > number for 20-30 Column variables, because the same number is used
> > twice (for value itself and its name) :(
> >
> > I am looking for something like Plot() which has been added to
GrapN.
> >
> > Thank you,
> > Mike
> >
> >
> > Yahoo! Groups Sponsor
> ADVERTISEMENT
>
>
> >
> > Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
|