Index: trunk/ippTools/src/dettool.c
===================================================================
--- trunk/ippTools/src/dettool.c	(revision 8175)
+++ trunk/ippTools/src/dettool.c	(revision 8186)
@@ -112,5 +112,16 @@
     }
 
-    if (!ippdbPrintMetadatas(stdout, result, "rawDetrendExp", true)) {
+    bool simple = false;
+    {
+        bool status = false;
+        simple = psMetadataLookupBool(&status, config->args, "-simple");
+        if (!status) {
+            psError(PS_ERR_UNKNOWN, false, "failed to lookup value for -simple");
+            return false;
+        }
+    }
+
+    // negative simple so the default is true
+    if (!ippdbPrintMetadatas(stdout, result, "rawDetrendExp", !simple)) {
         psError(PS_ERR_UNKNOWN, false, "failed to print array");
         psFree(result);
