PureBytes Links
Trading Reference Links
|
--- In amibroker@xxxxxxxxxxxxxxx, "compoundinfinity" <lhw1@xxx> wrote:
>
> New user here. I want to add some columns to the exploration result
> list for debugging but I have to manually stretch out the columns every
> time I open the window.
Use the syntax including all the parameters. For example:
AddColumn(Ann, "Ann. Return", 1.2, 16, 55, 75);
1.2 specifies two decimal places, 16 makes the text color
black, 55 makes the background color white, and 75 specifies the
column width.
|