← All toolsFinance & Analysisanalyst_toolsAll editions

CREATE_SENSITIVITY_TABLE

Generates a 5x5 automated sensitivity Data Table matrix in Excel showing how changing two variables impacts a target value.

Parameters

NameTypeRequiredDescription
output_pathstringyes
table_titlestringyes
target_metricstringName of the value being calculated (e.g., 'Share Price')
row_variable_namestringe.g., 'WACC'
row_variable_valuesarrayyes
col_variable_namestringe.g., 'Terminal Growth Rate'
col_variable_valuesarrayyes
matrix_valuesarrayyes2D array (list of lists) representing the calculated matrix values

How to use it

You normally trigger this by describing what you want in chat — the agent selects CREATE_SENSITIVITY_TABLE automatically. For example:

Try saying
“create a analyst tools document”

In a workflow

As a step in a multi-step workflow DAG:

json
{
  "id": "s1",
  "agent": "analyst_tools",
  "action": "CREATE_SENSITIVITY_TABLE",
  "args": {
    "output_path": "/Users/me/Documents/file.txt",
    "table_title": "…",
    "row_variable_values": [],
    "col_variable_values": [],
    "matrix_values": []
  },
  "depends_on": [],
  "outputs": []
}

Direct call

For scripting, call it directly via POST /execute_tool. Every tool returns { success, message, data }.

bash
curl -X POST http://127.0.0.1:8000/execute_tool \
  -H "Content-Type: application/json" \
  -d '{"tool_name":"CREATE_SENSITIVITY_TABLE","args":{"output_path":"/Users/me/Documents/file.txt","table_title":"…","row_variable_values":[],"col_variable_values":[],"matrix_values":[]}}'

Part of the analyst_tools plugin. Browse the full Plugin & Tool Catalog or the relevant feature guide.