PureBytes Links
Trading Reference Links
|
Hi,
i dont know about excell. I use GS Calc from
http://www.jps-development.com
Its quite simple to read/write/edit a GS Calc worksheet from Amibroker.
For example this simple script writes the first 500 close price into
the 1st spreadsheet column.
Doc = CreateObject("GSCalc.Application");
wks = Doc.New();
for (i=1; i<502; i++) {
row = "R" + NumToStr(i, 1.0, False) + "C1";
wks.PutValue(row,C[i]);
}
....
--- In amibroker@xxxxxxxxxxxxxxx, Steve Kuball <stevekub101161@xxx> wrote:
>
> Can any one tell me how to copy lists from Amibroker to Exell and
also from Excell to Amibroker?
>
> Stevekub101161
>
>
> ---------------------------------
> Sneak preview the all-new Yahoo.com. It's not radically different.
Just radically better.
>
|