Re: [amibroker] Re: Subscribing to suggestions?

2009-05-20 Thread Richard Dale
For what it's worth, I've received no emails for any of the added comments and status changes (eg. bug fixed) to my suggestions and bugs I've posted on the Feedback Centre. Looking forward to some of the suggestions bearing fruit soon (especially the new classification system!) Orig

[amibroker] how to get IB reuters fundamental datainto AB

2009-05-20 Thread loveyourenemynow
Hello, is there a way to get the IB reuters fundamental data into AB symbol information? I would like to rank stocks by EPS and other parameters. Thanks Ly

Re: [amibroker] Re: Subscribing to suggestions?

2009-05-20 Thread Dennis Brown
Brian, I did not say it explicitly says there is email notification. It implies it by the subscriptions list of subscribed issues under my account / subscriptions. Also the delete, pause, and continue with subscription controls. In the home page, it shows a letter icon that is enabled o

[amibroker] Re: Subscribing to suggestions?

2009-05-20 Thread brian_z111
> it implies that it does (send email notification). Where does it imply this... I can't see anything to that effect? It does allow for email notifications if enabled (by the administrator I guess). Nothing in my account settings to opt in to email notifies. The FC is built on 'BUGS': http://

[amibroker] Re: How to Open three Windows same Scrip DIFFERENT Time Frame in Linked Chart.

2009-05-20 Thread Shiree
Thanks Mike. --- In amibroker@yahoogroups.com, "Mike" wrote: > > At the bottom of the chart you have a popup menu with an "S" and an "I". For > the window that you don't want to follow the time interval, cick on the "I" > popup menu and select "No Interval Link". > > Mike > > --- In amibrok

Re: [amibroker] Empty Field

2009-05-20 Thread Graham
use nz() function -- Cheers Graham Kav AFL Writing Service http://www.aflwriting.com 2009/5/21 cadvantag : > Hello, > > I am having a problem adding two components together, when one field is > empty, my combined total of two fields remains empty or blank. > > How can I add one field to a empt

Re: [amibroker] Re: Subscribing to suggestions?

2009-05-20 Thread Dennis Brown
Brian, I am not judging whether the feedback center should or should not send emails, just that it implies that it does, and wondering if in fact it does for others. I just wanted to see if I should dig deeper to figure out why it is not working for me. I subscribe to other bug notificat

[amibroker] Re: Subscribing to suggestions?

2009-05-20 Thread brian_z111
I don't know about receiving email notifications from the feedback centre but it doesn't seem to be an AB policy elsewhere. I can offer a general opinion though. OT: Warning - psychological commentary below. Local variables: Everyone who owns AB is participating in the community in one way o

[amibroker] Empty Field

2009-05-20 Thread cadvantag
Hello, I am having a problem adding two components together, when one field is empty, my combined total of two fields remains empty or blank. How can I add one field to a empty field and get a numerical result.

Re: [amibroker] Re: Subscribing to suggestions?

2009-05-20 Thread Dennis Brown
Brian, AFAIK I have it enabled. I went through all the settings looking for a reason why I was not getting emails several times. I usually have a tab on my browser open to the suggestions home page. That is the easiest way I can monitor status of suggestions once a day. Perhaps that in

[amibroker] Re: Subscribing to suggestions?

2009-05-20 Thread brian_z111
>Do you get email notifications when a new comment or status change >happens? >Is this a working feature? Do you have it enabled? I have started on the code to do that for you, via AB, and I will post it as soon as I get it working. --- In amibroker@yahoogroups.com, Dennis Brown wrote: > > Hel

[amibroker] Subscribing to suggestions?

2009-05-20 Thread Dennis Brown
Hello, Do other members subscribe to bugs or suggestions? Do you get email notifications when a new comment or status change happens? I have a lot of subscribed items, but in years, I don't ever remember getting an email when the status changed. Is this a working feature? Best regards, D

[amibroker] Re: question on i-j; in a loop

2009-05-20 Thread Mike
You have not showed it in your code snippet. But, presumably 'i' is the control variable for an outer loop That being the case; Ignore all other logic and just try to understand what the flow control statements are doing. e.g. for (i = 0; i < BarCount; i++) { // Point 1 ... for (j = i + d

[amibroker] Re: Single Signal for Two Symbols

2009-05-20 Thread brian_z111
Here is a base station example of how to isolate a symbol, from a list of symbols, for testing: (run it on the example ^DJI database shipped with AB use all symbols and all quotations and daily bars in AA settings box) then backtest) Buy = Name() == "C" AND DayOfWeek() == 1; Sell = DayOfW

[amibroker] Re: Swing Trading Formula

2009-05-20 Thread areehoi
Here's one developed by Dimitris (Explortion). Let me know how it works for you. Dick H. t=20;x=DEMA(StochD(40),t); tA=50;xA=DEMA(StochD(40),tA); Buy=Ref(x,-1)==LLV(x,3)AND (PDI (14)>MDI(14)); Plot(50*Buy,"Buy",colorBrightGreen,2); Sell=Ref(x,-1)==HHV(x,3)AND (PDI (14)k1)*10,"K2>K1",colorBright

[amibroker] Re: Single Signal for Two Symbols

2009-05-20 Thread brian_z111
Hello spi_maker, Re buying either symbol if index moves: - AB default is the current symbol, so ,make your index the current symbol - use Foreign() etc to reference non-current symbols refer to the functions in the AB Help manual under the category "Referencing other symbol data", FOREIGN - a

Re: [amibroker] Re: How to pass variables from AFL to embedded JScript?

2009-05-20 Thread Tomasz Janeczko
No, it is the PROPERTY, so it does not "return" anything. You can however check if it is set. doc.Name = "something"; if( doc.Name != "something" ) { // property set was not succesful } Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "ozzyapeman" To: Sent: Wedn

Re: [amibroker] Re: How to pass variables from AFL to embedded JScript?

2009-05-20 Thread Tomasz Janeczko
It does not work because left-side of . operator currently needs to be variable identifier, not expression, so AB.ActiveDocument.Name generates syntax error because AB.ActiveDocument (left side of right most . operator) is the expression not the identifier Best regards, Tomasz Janeczko amibroker

[amibroker] Off the topic - Crown forex

2009-05-20 Thread umrperumal
Hi There is a rumour that forex broker Crown Forex is going under bankruptcy proceedings. Is anybody trading with them? Is there any basis in the rumour? Though off the topic, it helps. Kindly share your the knowledge anybody has on this. With kind regards UMR Perumal

[amibroker] Re: How to pass variables from AFL to embedded JScript?

2009-05-20 Thread ozzyapeman
e.g. AB = CreateObject("Broker.Application"); doc = AB.ActiveDocument; doc.Name = "xyqst"; // instead of "EURUSD" --- In amibroker@yahoogroups.com, "ozzyapeman" wrote: > > and since Dingo resurrected the topic, I also have a follow-up question... > > If I change doc.name to junk that doe

[amibroker] find today's dailybar high and low from intraday bar

2009-05-20 Thread murthysuresh
here is what i am trying to do. 1. take the bars where the datenum = today's datenum 2. get teh Highest value AddColumn(TimeFrameGetPrice( "C", inDaily, 0,expandFirst ),"C"); a=HHV(DateNum()== DateTimeConvert( 0, DateTime()),H); AddColumn(a,"Hihest today"); filter=true; instead it is only ret

[amibroker] Re: How to pass variables from AFL to embedded JScript?

2009-05-20 Thread ozzyapeman
and since Dingo resurrected the topic, I also have a follow-up question... If I change doc.name to junk that does not exist, like "xyqst", I do not get an error message. Shouldn't something like this generate an error? Otherwise if I make a typo, I'll never know if the actual doc was used for th

[amibroker] question on i-j; in a loop

2009-05-20 Thread zeek ing
Hello all, So I have been studying this loop over and over again and have a problem. It is used for sigscaleout. I am not sure what i=j does in the code. I should say why it does what it does. When I remove the i=j in the code, then the chart plots multiple short signals for that short. WHen the i=

[amibroker] Holiday break

2009-05-20 Thread Tomasz Janeczko
Hello, I will be on holidays May 22 - June 5 with limited internet connectivity, so I will not answer any personal e-mails and will not participate on this group during that time. There will be no new beta versions during that time. Technical support (Marcin) is working as usual, so in case of a

[amibroker] Re: Single Signal for Two Symbols

2009-05-20 Thread Mike
What you are requesting is very similar to how pairs trading is handled. Put Symbol-1 and Symbol-2 in a watchlist, then run your AFL over that watchlist. In your AFL, use either of Foreign or SetForeign/RestorePriceArrays to calculate your "significant move" of the index. Then simply do a Name()

Re: [amibroker] Re: How to pass variables from AFL to embedded JScript?

2009-05-20 Thread dingo
BUT, why didn't his use of AB.ActiveDocument.Name work? Isn't it supposed to according to how OLE object names are constructed? d On Wed, May 13, 2009 at 7:19 PM, Tomasz Janeczko wrote: > > > AB = CreateObject("Broker.Application"); > doc = AB.ActiveDocument; > doc.Name = "EURUSD"; > > Best r

[amibroker] Single Signal for Two Symbols

2009-05-20 Thread spi_maker
I have been experimenting with AB for the past several weeks and it is a very impressive system. There is one thing I would like to try and do and I am not sure whether I can get there with Amibroker. My trading calculation watches the performance of a specific index and if it moves in one dir

[amibroker] Swing Trading Formula

2009-05-20 Thread pradip_hardikar
Dear All , I want swing trading formula for AB. Please provide it Will the senior members help me ? pradip

[amibroker] Poblem with Volume [1 Attachment]

2009-05-20 Thread sawios
Dear All, Attached is the data for 10 day (just for sample)...it is the composite Index of jakarta... I try to import wizard on Amibroker 5.20 and I do not know how to solve as the Volume appear in chart either in QuoteEditor display not the same as the raw data.. Could you try and the so

[amibroker] Portfolio Hedging

2009-05-20 Thread machine_gh...@ymail.com
I have searched the archives but not have found any concrete examples or instructions on how to hedge a portfolio in the backtester. The example code for pairs trading is along the lines of the concept, except it is limited to the buy ticker being fixed whereas that is not the case with a por

[amibroker] Re: TJ - WishList - bar charts in cells of Explore

2009-05-20 Thread gmorlosky
Thanks for pointing that out. I see what you mean. Here is my working code: // "Diff" is a number between -100 and 100 function Rept( string1, howmany ) { result = ""; for( i = 0; i < howmany; i++ ) result += string1; return result; } Y = LastValue (int(abs(Diff))); X = Rept("|",Y); AddTextColu

[amibroker] Re: Right justify a repeated string in Explore column ?

2009-05-20 Thread gmorlosky
If that isn't practical I guess I can always "pad" the left side of the positives with 100 "." and "pad" the right side of the negatives with 100 ".", colorize and have a single column graph. --- In amibroker@yahoogroups.com, "gmorlosky" wrote: > > How can a string be right justified in the Exp

[amibroker] Amibroker professional vs standard

2009-05-20 Thread jacky lee
Dear All, Suppose I am going to use IB feed plugin only, do I need to purchase professional version ? look like the difference is mainly for those using the feed mentioned in the comparision chart. Thanks for your advice. Rgds, Jacky

[amibroker] Right justify a repeated string in Explore column ?

2009-05-20 Thread gmorlosky
How can a string be right justified in the Explore display ??? or for that matter how can a number be left justified. I'm working on a graphic representation of values from -100 to +100. Column A would hold the right justified repeat characters of | and Column B would hold the left justified

Re: [amibroker] Re: TJ - WishList - bar charts in cells of Explore

2009-05-20 Thread Tomasz Janeczko
Please fill suggestion at the feedback center. Thank you. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: Mike To: amibroker@yahoogroups.com Sent: Wednesday, May 20, 2009 6:37 AM Subject: [amibroker] Re: TJ - WishList - bar charts in cells of Explore

[amibroker] Re: Plot Vertical Line 50 days back

2009-05-20 Thread binjobingo
Thankyou Mike your AFL rocks --- In amibroker@yahoogroups.com, "Mike" wrote: > > Try something like the following. Note that when counting the number of bars > back, blank bars on the right edge of your chart are included in the count. > > Reference = BarIndex() == Status("lastvisiblebarindex"

[amibroker] Re: Plot Vertical Line 50 days back

2009-05-20 Thread Mike
Try something like the following. Note that when counting the number of bars back, blank bars on the right edge of your chart are included in the count. Reference = BarIndex() == Status("lastvisiblebarindex") - 50; Plot(Reference, "", colorRed, styleHistogram | styleOwnScale | styleNoLabel); Plot