diff --git a/GUI/src/main/java/cz/fidentis/analyst/gui/SymmetryEstimator.java b/GUI/src/main/java/cz/fidentis/analyst/gui/SymmetryEstimator.java
new file mode 100644
index 0000000000000000000000000000000000000000..97ce1b82eb47e793f7bf4096574a3156731203b7
--- /dev/null
+++ b/GUI/src/main/java/cz/fidentis/analyst/gui/SymmetryEstimator.java
@@ -0,0 +1,30 @@
+/*
+ * To change this license header, choose License Headers in Project Properties.
+ * To change this template file, choose Tools | Templates
+ * and open the template in the editor.
+ */
+package cz.fidentis.analyst.gui;
+
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import org.openide.awt.ActionID;
+import org.openide.awt.ActionReference;
+import org.openide.awt.ActionRegistration;
+import org.openide.util.NbBundle.Messages;
+
+@ActionID(
+        category = "File",
+        id = "cz.fidentis.analyst.gui.SymmetryEstimator"
+)
+@ActionRegistration(
+        displayName = "#CTL_SymmetryEstimator"
+)
+@ActionReference(path = "Menu/File/NewProject", position = 1300, separatorAfter = 1350)
+@Messages("CTL_SymmetryEstimator=Symmetry Estimator")
+public final class SymmetryEstimator implements ActionListener {
+
+    @Override
+    public void actionPerformed(ActionEvent e) {
+        // TODO implement action body
+    }
+}