PureBytes Links
Trading Reference Links
|
Thanks for the quick response....The merge would work great..however,
there are probably 5-20+ symbol changes on a daily basis...so trying
to figure out if there was abway to automate that via afl or jscript...
for jscript...i was thinking something like this :
oStock1 = oStocks( Ticker1 );
oStock2 = oStocks.add( Ticker2 );
var Qty = oStock1.Quotations.Count;
for( i = 0; i < Qty; i++ )
{
oQuote1 = oStock1.Quotations( i );
oQuote2 = oStock2.Quotations.add(oQuote1.Date);
oQuote2.Date = oQuote1.Date
oQuote2.Close = oQuote1.Close
oQuote2.Open = oQuote1.Open
oQuote2.High = oQuote1.High
oQuote2.Low = oQuote1.Low
oQuote2.Volume = oQuote1.Volume
oQuote2.OpenInt = oQuote1.OpenInt
}
But not sure if there is a better way
--- In amibroker@xxxxxxxxxxxxxxx, l washington <goldwing01_1999@xxxx>
wrote:
>
> Hopefully I will answer this correctly.
>
> First I would use "merge at the top of AB under symbols" this way
all my data is move under the new symbol and AB deletes old symbol and
data.
>
> Now for the script, I would think all tickers are not listed in this
script, since its a script it retrieving data and deleting non-active
quotes so, I would leave it alone.
>
> Now what do you think will work.
>
>
> elee67 <elee67@xxxx> wrote:
>
> Quick Question.. Hopefully,
>
> if there is a symbol that changes. how best to rename that symbol in
> AmiBroker via AFL or JScript? I found remove..but I really don't want
> to remove the symbol.. I just want to rename the ticker symbol to the
> new symbol and maintain the quote data.
>
> Thanks
>
>
>
>
>
> Check AmiBroker web page at:
> http://www.amibroker.com/
>
> Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
>
> Yahoo! Groups SponsorADVERTISEMENT
>
>
> ---------------------------------
> 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:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
>
>
>
> ---------------------------------
> Do you Yahoo!?
> Read only the mail you want - Yahoo! Mail SpamGuard.
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|