PureBytes Links
Trading Reference Links
|
Hello,
First of all - you should NOT delete composites that way,
as quotes in composites are AUTO-deleted by default if you run AddToComposite
www.amibroker.com/f?addtocomposite
(see atcFlagDeleteValues flag)
And it is faster process than re-creating them.
Second you can not delete symbols while you are working on them (and that
exactly what you are trying to do).
Third the only supported way to delete symbols programmatically
is running *external* script that uses OLE
AB = new ActiveXObject("Broker.Application");
AB.Stocks.Remove("SYMBOL_NAME_HERE");
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "gmorlosky" <gmorlosky@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Wednesday, July 29, 2009 11:20 PM
Subject: [amibroker] Re: Category Delete Symbol ???
> Hi TJ;
>
> Thanks, I have read this and used all of the those listed, BUT what we don't have is something that will "delete" ( and I do mean
> DELETE)symbols in a category.
>
> Any thoughts
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Tomasz Janeczko" <groups@xxx> wrote:
>>
>> Hello,
>>
>>
>> Please read the manual
>> http://www.amibroker.com/guide/h_categories.html
>>
>> Quote:
>>
>> There are two types of categories:
>> with mutualy exclusive membership: groups, markets, sectors/industries - it means that symbol must belong to single group, single
>> market and single sector/industry at a time. You can move the symbol from one group/market/sector/industry to another but you can
>> not remove this assignment - you should create "Unassigned" group/market/sector/industry instead and move 'unassigned' symbols
>> there.
>>
>> Unassigned is group 0.
>>
>> Best regards,
>> Tomasz Janeczko
>> amibroker.com
>> ----- Original Message -----
>> From: "gmorlosky" <gmorlosky@xxx>
>> To: <amibroker@xxxxxxxxxxxxxxx>
>> Sent: Wednesday, July 29, 2009 3:39 PM
>> Subject: [amibroker] Category Delete Symbol ???
>>
>>
>> >I need to DELETE about 200 some symbols every morning that I create in Group 253. They are the only symbols in Group 253.
>> > What code will do CategoryDelSymbols ?
>> >
>> > The following only "moves" the symbols to default group 0:
>> > list253 = CategoryGetSymbols( categoryGroup, 253 );
>> > for( i = 0; ( sym = StrExtract( list253, i ) ) != ""; i++ )
>> > {
>> > CategoryRemoveSymbol(sym, categoryGroup, 253);
>> > }
>> >
>> >
>> >
>> > ------------------------------------
>> >
>> > **** IMPORTANT PLEASE READ ****
>> > This group is for the discussion between users only.
>> > This is *NOT* technical support channel.
>> >
>> > TO GET TECHNICAL SUPPORT send an e-mail directly to
>> > SUPPORT {at} amibroker.com
>> >
>> > TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
>> > http://www.amibroker.com/feedback/
>> > (submissions sent via other channels won't be considered)
>> >
>> > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
>> > http://www.amibroker.com/devlog/
>> >
>> > Yahoo! Groups Links
>> >
>> >
>> >
>>
>
>
>
>
> ------------------------------------
>
> **** IMPORTANT PLEASE READ ****
> This group is for the discussion between users only.
> This is *NOT* technical support channel.
>
> TO GET TECHNICAL SUPPORT send an e-mail directly to
> SUPPORT {at} amibroker.com
>
> TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
> http://www.amibroker.com/feedback/
> (submissions sent via other channels won't be considered)
>
> For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> http://www.amibroker.com/devlog/
>
> Yahoo! Groups Links
>
>
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|