|
QuantShare
2012-08-21 14:12:25
|
|
Today, we released a new version of QuantShare trading software. The 2.9.2 version includes the following new features/updates:
Profile Graphs
A new function "PlotProfile" was added to the QuantShare programming language. This function allows you to create profile graphs. You will be able to create volume profile, indicator profile... charts.
Example:
newmonth = month() != ref(month(), 1);
PlotProfile("volume", newmonth, 1, 10, colorBlue, colorBlue, OperationSum);
The above formula draws a monthly volume profile on a daily chart.
Note that the first argument gets the time series or indicator that will be used in the calculation (sum, avg, max, rank...). This value must be enclosed in quotes.
In every parameter/argument, click on CONTROL+SPACE to show available values.
New "Global" event in Money Management
A new "Global" event was added to the money management script. This event is called once and it can be used to create global variables and functions to use in other events.
Example:
double barIndex = 0;
#functions#
public double Hello()
{
return 10;
}
New "AutoSR" function in custom function editor
The custom function editor (Tools -> Create Functions) has a new "AutoSR" function. This function calculates the auto support and resistance level, slope and intercept for each trading bar (or the last bar only).
Example:
VectorCustomDouble v = TA.AutoSR(2, 0, 100);
for(int i=0;i < v.Length;i++)
{
double level = v[i][0];
double slope = v[i][1];
double intercept = v[i][2];
// Distance between support level and share price
double distance = level - cFunctions.Close[i];
}
Ranking system supports for intraday periods
You can now create ranking systems based on intraday data.
- Select "Analysis -> Ranking System Manager"
- Create a ranking system
- Click on "Analyze Ranking System"
- Select "Symbols & Periods"
- Choose an intraday period next to "Select a time frame"
Create a notification when AI optimizer work is completed
A new feature in the AI optimizer allows you to instruct QuantShare to send you a notification when an AI Optimizer work is completed.
- Create a new AI Optimizer item
- In the last screen, click on "Define Notifications"
- Select one or several notification types: Popup message, Chart message, Play sound, Speech, Send email and Execute script.
|
|