PureBytes Links
Trading Reference Links
|
Hello,
1. AddColumn( close, "Close", 1.4
);
is the equivalent of
NumColumns = 1;
Column0 = Close;
Column0Name = "Close";
Column0Format = 1.4;
2. AddTextColumn works in a similar
way
but first argument is a text:
AddTextColumn( GroupID( 1 ), "Name ofthe
group" );
3. Plot( macd(), "MACD", 7, 1 );
is the equivalent of
graph0 = macd();
graph0color = 1;
graph0name = "MACD";
graph0style = 7;
4. MarketID, GroupID, SectorID,
IndustryID:
Filter= Cum<FONT color=#000000
size=1>(1<FONT color=#000000
size=1>)==LastValue<FONTcolor=#000000
size=1>( Cum<FONT color=#000000
size=1>(1)
);<FONT
color=#0000ff face="Courier New" size=1>
AddTextColumn(
MarketID<FONT
color=#000000 face="Courier New" size=1>(<FONT color=#ff00ff
face="Courier New" size=1>1<FONT color=#000000 face="CourierNew"
size=1>), "Market
name" );<FONT
color=#0000ff face="Courier New" size=1>AddTextColumn<FONT
color=#000000 face="Courier New" size=1>( <FONT color=#0000ff
face="Courier New" size=1>GroupID<FONT color=#000000 face="Courier New"
size=1>(1<FONT
color=#000000 face="Courier New" size=1>), <FONT color=#ff00ff
face="Courier New" size=1>"Group name"<FONT color=#000000
face="Courier New" size=1> );<FONT color=#0000ff face="Courier New"
size=1>AddTextColumn(
SectorID<FONT
color=#000000 face="Courier New" size=1>(<FONT color=#ff00ff
face="Courier New" size=1>1<FONT color=#000000 face="CourierNew"
size=1>), "Sector
name" );<FONT
color=#0000ff face="Courier New" size=1>AddTextColumn<FONT
color=#000000 face="Courier New" size=1>( <FONT color=#0000ff
face="Courier New" size=1>IndustryID<FONT color=#000000
face="Courier New" size=1>(<FONT color=#ff00ff face="CourierNew"
size=1>1), <FONT
color=#ff00ff face="Courier New" size=1>"Industry name"<FONT
color=#000000 face="Courier New" size=1> );<FONT face=Arial
size=2>
Best regards,
Tomasz Janeczko
amibroker.com
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Thomas Z.
To: <A
href=""
title=amibroker@xxxxxxxxxxxxxxx>amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, November 08, 2001 9:10
PM
Subject: Re: [amibroker] AmiBroker3.80
beta (Win32) available
Dear Tomasz,
How can i use the new function.
Do you have an example please.
Thomas
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Tomasz Janeczko
To: <A
href=""
title=amibroker@xxxxxxxxxxxxxxx>amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, November 08, 2001 7:55
PM
Subject: [amibroker] AmiBroker 3.80
beta (Win32) available
Hello,
A new beta version of AmiBroker (3.80) is
available for download
from the following
locations:
<FONT face=Tahoma
size=2>http://www.amibroker.com/bin/ab380beta.exe
<FONT face=Tahoma
size=2>http://www.amibroker.net/bin/ab380beta.exe<A
href=""><FONT face=Tahoma
size=2>ftp://ftp.amibroker.com/pub/ab380beta.exe
(Self extracting archive 330KB)
CHANGES FOR VERSION 3.80 BETA (AS COMPARED TO
3.79)
a default argument mode = 0 added to the following
functions:GroupID( mode = 0 ), MarketID( mode = 0 ), SectorID( mode =
0 ), IndustryID( mode = 0 )when mode = 0 (or no argument is
given)- these functions return numerical ID (as in 3.79)mode = 1 -
these functions return name of the category (text)
added predefined symbols True = 1 and False = 0
Avg and A are highlighted by the AFL editor now
The number of chart sheet tabs is now definable bythe
user (from 1 upto 20 tabs)The default was increased to 8. A pager
control added to scroll the tabs if there is not enough space to fit all
tabs and the horizontal scroll bar
New AFL functions: AddColumn( array, name, format =
1.2 );AddTextColumn( text, name );Plot( array, name,
color/barcolor, )
New reserved variableGraphNname = "string";
"show current trade arrows" in AA window works correct
also for "open long" and "open short"
AND, OR, NOT are highlighted in AFL editor
BuyPrice, SellPrice, ShortPrice, CoverPrice arraysare
checked against High/Low range for every bar and adjusted if they are
outside of the allowed range due to the wrong formula. Also these arrays
are checked for {empty} values and fixed to back to the default set in
Settings if an {empty} is encountered.
data tooltip is less sensitive to the mouse movement when
a chart is zoomed in
sharing violation exception is now caught when trying to
save AFL/CSV over the file that is opened exclusively by another
application.
The on/off status of format toolbar buttons (thickline,
dotted, right extend) is preserved between sessions
Best regards,Tomasz
Janeczko===============AmiBroker - the comprehensive share
manager.<FONT face=Tahoma
size=2>http://www.amibroker.com
<FONT face=Tahoma
size=1>Your use of Yahoo! Groups is subject to
the Yahoo! Terms of
Service. Your use of Yahoo! Groups is
subject to the Yahoo! Termsof
Service.
|