PureBytes Links
Trading Reference Links
|
Hello,
Windows Automation ? If you mean OLE automation
then it is not sensitive to window title. Just use CreateObject.
As to how to get rid of seleted ticker in the title of main frame
- this is standard Windows feature for all MDI applications,
and I don't want to break standards.
If you want main frame to be free of the ticker symbol and full
name there is standard way as well - click "RESTORE" button
so chart window is NOT maximized within the frame as in the video tutorial:
http://www.amibroker.com/video/layouts.html
Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: "vlanschot" <ecbu@xxxxxxxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Saturday, January 07, 2006 2:13 PM
Subject: [amibroker] Re: How to get rid of (Full)Name in AB-Window?
> Les,
>
> Indeed, but thanks for the effort anyway. Already submitted enquiry
> to Support. Think there is a way, but don't remember.
>
> PS
>
> FYI, the reason why I ask this, is that I use Windows automation
> scripts, and these do not recognise the AB-window if it's title
> changes all the time you switch to another ticker.
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Lesmond V" <ebsn247@xxxx> wrote:
>>
>> Vlanschot, Dave has probably answered all your questions.
>>
>> 1) I didn't realize that your original question was about editing
> the line at the top left corner of the monitor next to "AmiBroker"
> logo. I don't know the answer, maybe someone else.
>>
>> 2) My code was for editing "Title" in the chart window, first two
> lines were just comments and the code starts below:
>>
>> /*******/
>> code
>> /*******/
>>
>> 3) Colour escape sequence is a very convenient way of coding Title
> colours:
>>
>> \\c38 = EncodeColor(colorViolet) = EncodeColor(38)
>> \\c-1 = axis colour
>>
>> 4) Carriage return:
>>
>> \n = one line
>> \n\n = two lines
>>
>> You can find more about all this here:
>>
>> http://www.amibroker.com/guide/h_indbuilder2.html
>> http://www.amibroker.com/guide/afl/afl_view.php?id=46
>>
>> Lesmond
>>
>> --- In amibroker@xxxxxxxxxxxxxxx, "Dave's Laptop" <dlittner@xxxx>
> wrote:
>> >
>> > Thanks for that clarification. How have you been?
>> >
>> >
>> >
>> > _____
>> >
>> > From: amibroker@xxxxxxxxxxxxxxx
> [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf
>> > Of NW Trader
>> > Sent: Friday, January 06, 2006 11:14 PM
>> > To: amibroker@xxxxxxxxxxxxxxx
>> > Subject: Re: [amibroker] Re: How to get rid of (Full)Name in AB-
> Window?
>> >
>> >
>> >
>> > Hi Dave,
>> >
>> >
>> >
>> > That title code Les posted is for setting the title line in a
> chart window
>> > -- it doesn't answer the original question asked.
>> >
>> >
>> >
>> > The \n command is a forced carridge return which will set the
> following code
>> > in a title to the next line.
>> >
>> >
>> >
>> > The \\c <file:///\\c> command is for defining colors -- e.g.
> \\c01
>> > <file:///\\c01> will print in black. See some of the code I've
> sent you
>> > earlier for examples of using these
>> >
>> >
>> >
>> > I do not know of a way to do what the original questioner asked -
> - I believe
>> > one would have to edit AB code itself.
>> >
>> >
>> >
>> > Peace and Justice --- Patrick
>> >
>> > ----- Original Message -----
>> >
>> > From: Dave's <mailto:dlittner@x...> Laptop
>> >
>> > To: amibroker@xxxxxxxxxxxxxxx
>> >
>> > Sent: Friday, January 06, 2006 10:24 PM
>> >
>> > Subject: RE: [amibroker] Re: How to get rid of (Full)Name in AB-
> Window?
>> >
>> >
>> >
>> > Hi Lesmond,
>> >
>> > As a newbie I am grabbing all "snippets" of code and saving them
> in a
>> > subdirectory. This didn't verify as I suspect that the first
> two lines were
>> > meant to be comments. Also what do you mean by the second
> line "code that
>> > moves the text to the new row below"?
>> >
>> > Dave
>> >
>> > -----Original Message-----
>> > From: amibroker@xxxxxxxxxxxxxxx
> [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf
>> > Of Lesmond V
>> > Sent: Friday, January 06, 2006 10:11 PM
>> > To: amibroker@xxxxxxxxxxxxxxx
>> > Subject: [amibroker] Re: How to get rid of (Full)Name in AB-
> Window?
>> >
>> > You have to create your own code for the reserved
> variable "Title". Here is
>> > an example how to customize Title and ToolTips (the square box
> that appears
>> > next to the mouse pointer when you point the mouse to a bar or a
> candle).
>> > You would need to save this as AFL file, let's say MyPrice.afl
> and use it
>> > instead of default "Price.afl" (left pane - charts tab - basic
> charts -
>> > price).
>> >
>> > \\c - colour code
>> > \n - code that moves the text to the new row below
>> >
>> >
>> > /*******/
>> >
>> > Title = "\\c11"+Interval(format=2)+" "+Date()+"\\c-1 O="+O+"
> H="+H+"
>> > L="+L+" C="+C;
>> >
>> > Plot(C, ToolTip="C = "+C+"\n" +ToolTip="V = "+NumToStr(V,1.0)
> +"\n"
>> > +ToolTip="OI = "+NumToStr(OI,1.0), colorDarkYellow, styleCandle);
>> >
>> > /*******/
>> >
>> >
>> > --- In amibroker@xxxxxxxxxxxxxxx, "vlanschot" <ecbu@xxxx> wrote:
>> > >
>> > > Does anybody know how to get rid of the Name and Full name at
> the upper
>> > > left corner in the AB-window itself (as in Amibroker -
> [S&P500 - S&P
>> > > 500 Index]?
>> > >
>> > > Thanks,
>> > >
>> > > PS
>> > >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> > 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
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> >
>> > 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
>> >
>> >
>> >
>> >
>> >
>> >
>> > SPONSORED LINKS
>> >
>> >
>> > Investment
>> > <http://groups.yahoo.com/gads?
> t=ms&k=Investment+management+software&w1=Inves
>> >
> tment+management+software&w2=Real+estate+investment+software&w3=Inves
> tment+p
>> >
> roperty+software&w4=Software+support&w5=Real+estate+investment+analys
> is+soft
>> >
> ware&w6=Investment+software&c=6&s=200&.sig=_XXUzbE9l5lGlZNcMu4KNQ>
>> > management software
>> >
>> > Real
>> > <http://groups.yahoo.com/gads?
> t=ms&k=Real+estate+investment+software&w1=Inve
>> >
> stment+management+software&w2=Real+estate+investment+software&w3=Inve
> stment+
>> >
> property+software&w4=Software+support&w5=Real+estate+investment+analy
> sis+sof
>> >
> tware&w6=Investment+software&c=6&s=200&.sig=5_sgDczz3ArKGMtJ9tFSJA>
> estate
>> > investment software
>> >
>> > Investment
>> > <http://groups.yahoo.com/gads?
> t=ms&k=Investment+property+software&w1=Investm
>> >
> ent+management+software&w2=Real+estate+investment+software&w3=Investm
> ent+pro
>> >
> perty+software&w4=Software+support&w5=Real+estate+investment+analysis
> +softwa
>> >
> re&w6=Investment+software&c=6&s=200&.sig=_N6zcwefgp4eg5n6oX5WZw>
> property
>> > software
>> >
>> >
>> > Software
>> > <http://groups.yahoo.com/gads?
> t=ms&k=Software+support&w1=Investment+manageme
>> >
> nt+software&w2=Real+estate+investment+software&w3=Investment+property
> +softwa
>> >
> re&w4=Software+support&w5=Real+estate+investment+analysis+software&w6
> =Invest
>> > ment+software&c=6&s=200&.sig=MJ2jP31F3n64RDZkDadU8w> support
>> >
>> > Real
>> > <http://groups.yahoo.com/gads?
> t=ms&k=Real+estate+investment+analysis+softwar
>> >
> e&w1=Investment+management+software&w2=Real+estate+investment+softwar
> e&w3=In
>> >
> vestment+property+software&w4=Software+support&w5=Real+estate+investm
> ent+ana
>> >
> lysis+software&w6=Investment+software&c=6&s=200&.sig=GmF8PlAJASx0wrSa
> X5-Zlw>
>> > estate investment analysis software
>> >
>> > Investment
>> > <http://groups.yahoo.com/gads?
> t=ms&k=Investment+software&w1=Investment+manag
>> >
> ement+software&w2=Real+estate+investment+software&w3=Investment+prope
> rty+sof
>> >
> tware&w4=Software+support&w5=Real+estate+investment+analysis+software
> &w6=Inv
>> > estment+software&c=6&s=200&.sig=aMgGsKT4w29dMAYUzQUKzg>
> software
>> >
>> >
>> >
>> >
>> > _____
>> >
>> >
>> > YAHOO! GROUPS LINKS
>> >
>> >
>> >
>> > * Visit your group "amibroker
>> > <http://groups.yahoo.com/group/amibroker> " on the web.
>> >
>> > * To unsubscribe from this group, send an email to:
>> > amibroker-unsubscribe@xxxxxxxxxxxxxxx
>> > <mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx?
> subject=Unsubscribe>
>> >
>> > * Your use of Yahoo! Groups is subject to the Yahoo!
>> > <http://docs.yahoo.com/info/terms/> Terms of Service.
>> >
>> >
>> >
>> >
>> > _____
>> >
>>
>
>
>
>
>
>
>
>
> 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
>
>
>
>
>
>
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/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:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|