PureBytes Links
Trading Reference Links
|
<x-html><html>
<font size=3>please answer a few for me...<br>
<br>
is esignal a viable data source..is it reliable...is it faster than
pcquote...<br>
<br>
what would be the best data source for real time options being used with
metastock...<br>
<br>
and i cannot get a straight answer from equis..does metastock RT support
option data...<br>
<br>
thanks...<br>
<br>
</font><br>
Jim....Atlanta, ga
</html>
</x-html>From ???@??? Mon Apr 24 19:28:27 2000
Return-Path: <majordom@xxxxxxxxxxxxxxxxxx>
Received: from listserv.equis.com (listserv.equis.com [204.246.137.2])
by purebytes.com (8.9.3/8.9.3) with ESMTP id TAA26464
for <neal@xxxxxxxxxxxxx>; Mon, 24 Apr 2000 19:14:28 -0700
Received: (from majordom@xxxxxxxxx)
by listserv.equis.com (8.8.7/8.8.7) id TAA18879
for metastock-outgoing; Mon, 24 Apr 2000 19:49:36 -0600
X-Authentication-Warning: listserv.equis.com: majordom set sender to owner-metastock@xxxxxxxxxxxxx using -f
Received: from freeze.metastock.com (freeze.metastock.com [204.246.137.5])
by listserv.equis.com (8.8.7/8.8.7) with ESMTP id TAA18876
for <metastock@xxxxxxxxxxxxxxxxxx>; Mon, 24 Apr 2000 19:49:32 -0600
Received: from smtp-server.tampabay.rr.com (smtp-server1.tampabay.rr.com [24.92.1.13])
by freeze.metastock.com (8.8.5/8.8.5) with ESMTP id UAA14262
for <metastock@xxxxxxxxxxxxx>; Mon, 24 Apr 2000 20:02:30 -0600 (MDT)
Received: from tampabay.rr.com (24161253hfc203.tampabay.rr.com [24.161.253.203])
by smtp-server.tampabay.rr.com (8.9.3/8.9.3) with ESMTP id VAA00653
for <metastock@xxxxxxxxxxxxx>; Mon, 24 Apr 2000 21:46:11 -0400 (EDT)
Message-ID: <3904F8E3.D27D9C91@xxxxxxxxxxxxxxx>
Date: Mon, 24 Apr 2000 21:46:12 -0400
From: iamken <iamken@xxxxxxxxxxxxxxx>
X-Mailer: Mozilla 4.72 [en] (Win98; U)
X-Accept-Language: en
MIME-Version: 1.0
To: metastock@xxxxxxxxxxxxx
Subject: Re: Metastock - System tester question
References: <002301bfad36$09494820$e638b3c2@xxxxxxxxxxxxx>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Sender: owner-metastock@xxxxxxxxxxxxx
Precedence: bulk
Reply-To: metastock@xxxxxxxxxxxxx
Status:
Hi Manuel,
This seems to be an oscillator that has two optimimization variables,
but I don't see your specific entry or exit condition. The following
will get you long when the indicator crosses below 30, and it should
exit on bar 3. I ran this test and checked about 15 or so entries/exits
and they looked right. After you run this (or your) test, be sure that
you change the indicator on your chart to match the optimization
variables that the test churned out, otherwise you could see some
entries/exits that don't seem right. Assuming that you are doing that,
the other thing I see is some invalid math errors on the test, so maybe
this is the problem. Try changing the lowest OPT number to 2 instead of
1 and see if that gets rid of the math errors. If this none of this
helps, try running the test without the OPT variables and see what
happens. If there is still a problem, send the exact entry and exit
condition so we can can a look.
Good luck,
Ken
--Enter Long--
BmIndicator:=
Mov((Sum((CLOSE -OPEN) >0,opt7)/
(Sum((CLOSE -OPEN) >0,opt7)+
Sum((CLOSE -OPEN) <0,opt7)))*100,opt8,S);
Cross(30,BmIndicator)
--Close Long--
BmIndicator:=
Mov((Sum((CLOSE -OPEN) >0,opt7)/
(Sum((CLOSE -OPEN) >0,opt7)+
Sum((CLOSE -OPEN) <0,opt7)))*100,opt8,S);
EnterLong:=Cross(BmIndicator,30);
ExitLong:=BarsSince(EnterLong)
|