Analysis Cluster

Author: Optuma Team Last updated: Jun 26, 2021 06:19
Included in Trader Services Included in Professional Services Included in Enterprise Services

Overview

Similar to the Price or Time Clusters, the Analysis Cluster tool is designed to combine multiple criteria and tools, and highlight areas of convergence on the chart. In this example there are five criteria defined in the scripting language, including Close > 50MA, 13EMA is sloping up, and positive rate-of-change over the last 3 months (scroll down for scripting examples). Where these conditions are true they are highlighted on the chart by the coloured blocks. The green shaded area is the Analysis Cluster Result, which shows where each of the five conditions overlap:

MASASCL Large
In the above example, QAN currently has a value of 5 (so all the underlying conditions are true) whereas during the downtrend at the end of 2017 the values were either 0 or 1.

To add the Analysis Cluster tool to your chart, select the tool from the Levels tool group, and left-click on the chart to add the tool. To add the criteria click on Cluster Scripts in the Properties and the ‘+’ to add each script, then the 3 dots to open the Script Editor window:

img0

Export / Import

You can export the analysis cluster tool as a file, which can be sent to other Optuma clients. Double-clicking the file will automatically add the exported tool to the custom tool bar.

To export the Analysis Cluster tool, left click the tool once to select it, then go to the left side properties panel. In the Actions section of the panel click the Export Analysis item.

image_2021-06-25_161549

In the window that opens, type in a name to save the file as then click the Save button. By default the file will be saved in the following folder:

My Documents - Optuma - Local - Analysis

ACExp2
There are two methods available to import the Analysis Cluster. The first is to locate the file via Windows Explorer, and double click it (while Optuma is open).

ACExp3

This will automatically add the Analysis Cluster to your custom tool bar.

ACExp4

Alternatively you can add a blank Analysis Cluster tool to your chart, go to the left side Properties panel and click the Import Analysis action.

image_2021-06-25_161701

In the window that opens double click on the exported file (*.oac) and the analysis will be updated.

Note: One limitation with the exporting / importing of the Analysis Cluster tool is with the Script() function. If the recipient of the exported file does not have the same scripts you do the Script() function will not work.

Astro scripts

With the release of Optuma 2.0 any Astro based analysis added to the cluster tool will display results past the last bar now.

AstroCluster1

Actions & Properties

Actions

Actions
Add Item: When selected opens the Script Editor. This is where you can select from previously saved scripts or create a new script as required. The criteria in the script is what the Analyst Cluster will use to display the results.

Export Analysis: Allows you to export the analysis cluster tool as a file, which can be sent to other Optuma clients. Double-clicking the file will automatically add the exported tool to the custom tool bar.

Import Analysis: Allows you to export the analysis cluster tool as a file.

Add to Toolbar: Adds the selected tool to your custom toolbar.

Apply Settings to All: When multiple Analysis Cluster tools have been applied to a chart, page or workbook, this action can be used to apply the settings of the one selected to other instances of the tool. This is a great time saver if an adjustment is made to the tool - such as line colour - as this allows all the other Analysis Cluster tools in the chart, page or entire workbook to be updated instantly.

Copy Tool: Allows you to copy the selected tool, which can then be pasted onto a different chart window.

Move to Back: If the tool is displaying in front of other tools or indicators clicking this action will move the tool view to the background.

Move to Front: If the tool is displaying behind other tools or indicators on the chart, clicking this action will bring the tool to the forefront.

Restore Default Settings: Click this action if you have adjusted the default settings of the tool, and wish to return to the standard properties originally installed with Optuma.

Save Settings as Default: If you have adjusted any of the tool’s properties (colour, for example) you can save the adjustments as your new default setting. Each time you apply a new Analysis Cluster to a chart, the tool will display using the new settings.

Delete: Deletes the tool from the chart.
</span>

Properties

Properties

Tool Name: Allows you to adjust the name of the tool, as it’s displayed in the Structure Panel.
Cluster Scripts: This expands to display the following.

  • Script - From here you can click the button as highlighted above to access the Script Editor where you can select from existing scripts or create a new one.
  • Label - Assigns the label name to use for the script item.
  • Weight - Adjusts the width of the Analysis line to use for that script item.
  • Colour - Adjusts the colour of the Analysis line to use for that script item.
  • Smoothing - By default no Smoothing is applied, this can be set to use Linear or Sine smoothing

MASASCL Levels
Merge All Scripts: When selected each plot of the Analysis Cluster will be merged into the one view.

Show Summary Plot: When selected the Summary plot will be displayed.

Examples

Below are a number of examples of scripts that can be used with the Analysis Cluster Tool:

Example 1

CLOSE() > MA(BARS=150, STYLE=Exponential)

Results will be plotted when the Close is Greater than the value of a 150-period Exponential Moving Average.

Example 2

CLOSE() > CLOSE(1) and CLOSE() > CLOSE(2) and CLOSE() > CLOSE(3)

Results will be plotted when the Closing Price is Higher than the previous 3-day’s Closing Price.

Example 3

MA(BARS=25, STYLE=Exponential) CrossesAbove MA(BARS=50)

Results will be plotted when a 25-period Exponential Moving Average crosses above a 50 period Simple Moving Average.

Discussion