PureBytes Links
Trading Reference Links
|
Hello,
A new beta (3.58) is available for download from:
http://www.amibroker.com/bin/ab358beta.zip
and
http://www.amibroker.net/bin/ab358beta.zip
CHANGES FOR VERSION 3.58 BETA (AS COMPARED TO 3.57)
1. Automatic analysis window now supports
"Exploration" - for generating user-defined reports from database screens.
Short instructions:
You need to:
define filter variable that equals "1" for stock accepted
define numcolumns variable that defines the number of columns in the report
define column0, column1, column2, ...., columnX variables that get the values displayed in the report
optionally: define column0name, column1name, ... to name column headers accordingly
optionally: define column0format, column1format, ... to change the default 2 decimal digits output (1.5 gives 5 decimal digits, 1.0
gives no decimal digits)
After running Exploration you can export the report to the CSV file using "Export" button.
2. Variable period MA()
3. Small fix to variable period Sum()
4. Layouts can be now saved to a file, enabling unlimited user-definable layouts possible - accessible by Right Mouse button menu
over the chart "Layout" submenu options: Load, Save, Load default, Save as default
-------------------
Sample Exploration:
filter = cross( macd(), 0 );
numcolumns = 4;
column0 = macd();
column0format = 1.9;
column0name = "Today's MACD";
column1 = ref( macd(), -1 );
column1name = "Previous MACD ";
column1format = 1.5;
column2 = roc( close, 5 );
column2name = "5 day % change";
column3 = roc( close, 5 * 52 );
column3name = "52 week % change ";
buy = filter;
sell = 0;
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
|