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 [email protected], Steve Kuball <[EMAIL PROTECTED]> 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.
>







------------------------ Yahoo! Groups Sponsor --------------------~--> 
Yahoo! Groups gets a make over. See the new email design.
http://us.click.yahoo.com/ulNZQC/lOaOAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~-> 

Please note that this group is for discussion between users only.

To get support from AmiBroker please send an e-mail directly to 
SUPPORT {at} amibroker.com

For other support material please check also:
http://www.amibroker.com/support.html

 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/amibroker/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to