PureBytes Links
Trading Reference Links
|
Notice my error message. I have a function called Power but I keep getting
same error message. Maybe my function is different from "true" power
function????
JAC
Return-Path: <uncle-loki@xxxxxxxxxxxxx>
Received: from aol.com (rly-zb02.mail.aol.com [172.31.41.2]) by
air-zb02.mail.aol.com (v60.25) with ESMTP; Sun, 15 Aug 1999 10:54:54
-0400
Received: from smtp.email.msn.com (cpimssmtpu01.email.msn.com
[207.46.181.26]) by rly-zb02.mx.aol.com (v60.25) with ESMTP; Sun, 15
Aug 1999 10:54:44 -0400
Received: from oemcomputer - 153.36.198.251 by email.msn.com with Microsoft
SMTPSVC;
Sun, 15 Aug 1999 07:54:44 -0700
Message-ID: <000401bee72e$29844a00$fbc62499@xxxxxxxxxxx>
From: "uncle-loki" <uncle-loki@xxxxxxxxxxxxx>
To: <JAC1390@xxxxxxx>
Subject: Re: Volatility Stops
Date: Sat, 14 Aug 1999 15:42:51 -0500
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 4.72.3110.1
X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3
I copy pasted your code below and verified it in TS 4.0 build 23 Power
Editor. It appeared to be fine. The one thing I noticed about the code below
is when you call the Power function the first time you have a space between
Power and the opening paranthesis. Try removing it.
Loki
-----Original Message-----
From: JAC1390@xxxxxxx <JAC1390@xxxxxxx>
To: omega-list@xxxxxxxxxx <omega-list@xxxxxxxxxx>
Date: Saturday, August 14, 1999 2:42 PM
Subject: Volatility Stops
>Inputs: ImpVol(.11), Length(7), ProbFig(1.03643), MrkPrice(114);
>Variables: E(2.718282), Factor(0), HighStop(0), LowStop(0);
>
>Factor = ImpVol*SquareRoot(Length/365)*ProbFig;
>
>HighStop = MrkPrice * Power (E, Factor);
Error
>Message Function has no inputs.Parenthesis not needed ????}
>
>LowStop = MrkPrice * Power(E, -1*Factor);
>
>Plot1(HighStop, "StopAbove");
>Plot2(LowStop, "StopBelow");
>
>In an attempt to replicate your indicator that appeared in Omega mag I
>received error message after word Power. Can you help me verify this?
>
>Am I supposed to have a function called Power??
>
>Thank you,
>
>JAC
>
>
|