PureBytes Links
Trading Reference Links
|
I'm new to Metastock and I would like to know how can I find the highest
price in the last 1 year (e.g. 12 months or 250 days)?
Thanks
Tony
-----Original Message-----
From: equismetastock@xxxxxxxxxxxxxxx [mailto:equismetastock@xxxxxxxxxxxxxxx]
Sent: Tuesday, May 30, 2006 3:09 AM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: [EquisMetaStock Group] Digest Number 1569
------------------------ Yahoo! Groups Sponsor --------------------~-->
Protect your PC from spy ware with award winning anti spy technology. It's
free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/BefplB/TM--------------------
------------------------------------------------~->
There are 9 messages in this issue.
Topics in this digest:
1. Re: [SPAM] Re: [EquisMetaStock Group] Re: Explorer (!)(!)(
From: "Roy Larsen" rlarsen@xxxxxxxxxxxxxx
2. "what am I doing wrong?"
From: "Paolo" italoarg76@xxxxxxxx
3. Re: "what am I doing wrong?"
From: "Roy Larsen" rlarsen@xxxxxxxxxxxxxx
4. Signal Coding
From: "tan ming" reminiscenostalgia@xxxxxxxxxxx
5. Re: Signal Coding
From: "Roy Larsen" rlarsen@xxxxxxxxxxxxxx
6. Metastock ver 4.5(dos based)
From: "ccwoam" ccwoam@xxxxxxxxxxxx
7. ODIN + Metastock
From: "T.Krishna Prasad" totkp@xxxxxxxxx
8. Re: Metastock ver 4.5(dos based)
From: "Dusant" dusant_ap@xxxxxxxxxxx
9. Re: Metastock ver 4.5(dos based)
From: "Lionel Issen" lissen@xxxxxxxxxxxxx
________________________________________________________________________
________________________________________________________________________
Message 1
From: "Roy Larsen" rlarsen@xxxxxxxxxxxxxx
Date: Sun May 28, 2006 1:31pm(PDT)
Subject: Re: [SPAM] Re: [EquisMetaStock Group] Re: Explorer (!)(!)(
Hi Paolo
I suggest that you Edit your exploration, look under Options, and set
Exploration Date to Most Recent Date. Each exploration has this choice, and
if you created your exploration by copying from another that was set to
Specific Date then the new exploration will have the same setting.
Another distinct possibility is that you have Periodicity set incorrectly -
this will also give values that are way off.
The one thing that you can be sure of is that your exploration is doing
exactly what you have told it to do. You are responsible for errors in the
results, and accepting that will enable you to follow through and fix
mistakes. Assuming that the problem lies with the Explorer makes finding the
problem much harder because you'll be looking in the wrong places. I'm not
suggesting that you personally are blaming MetaStock, but offering my
thoughts for those that whose first thought is such a situation is to ask
"what is MetaStock doing wrong?" when the question should be "what am I
doing wrong?".
Regards
Roy
www.metastocktips.co.nz
----- Original Message -----
From: Paolo
To: pumrysh
Sent: Monday, May 29, 2006 5:14 AM
Subject: [Norton AntiSpam] [SPAM] Re: [EquisMetaStock Group] Re: Explorer
(!)(!)(
Preston:
You was RIGHT about explorer wasn't loading ALL the records BUT now
after load 10,000 records, with other values, the PROBLEM STILL (continue)
The values are so diferent as: 1.5061 (explorer) vs. 0.083(indicator) I
thought after load ALL the records the problem wold be solved but now I'm
afraid it has no solution.
It's crazy the explorer takes values from 1996 when the stock data of that
security (CEPU2) starts in 2004 !!!!!!! :O
Thank U for help me.
Best regads,
Pablo
p> You explored a different length of data. Make sure that the displayed
p> data and explored data are the same. When you first open the explorer
p> window, you will notice an explore, reports, and options button at
p> the bottom. Go into options to set the looback period.
p> Preston
p> --- In equismetastock@xxxxxxxxxxxxxxx, Paolo <italoarg76@xxx> wrote:
>>
>> Hi!!!
>> I've developed an indicator and then I put it into the explorer
>> (as Jose Silve teach me) The values calculated by the explorer are
>> VERY diferent of the indicator and I could to see the explorer values
>> were WRONG!!!
>> What's happen with the explorer ?!!
>> How can I use this tool if it fails so much ?!!!!!!!!!!!!!!!!!
>> The explorer code tried was:
>>
>> ColA:
>> ====
>>
>> { User inputs }
>> pds:=25; {for calculus of divergences} p1:=20; { Divergence pds for
>> short moving average } p2:=200; { Divergence pds for long moving
>> average }
>>
>> s1:= Mov(C,p1,E);
>> s2:= Mov(C,p2,E);
>>
>> { Divergences }
>>
>> divs:=If(s1<Mov(s1,pds,E) AND (s1<Ref(s1,-pds)) AND
>> s2>Mov(s2,pds,E) AND (s2>Ref(s2,-pds)),-1,
>> If(s1>Mov(s1,pds,E) AND (s1>Ref(s1,-pds)) AND
>> s2<Mov(s2,pds,E) AND (s2<Ref(s2,-pds)) ,1,0));
>>
>> DP:=If(divs=1,divs+PREV,PREV); { acumulate of (+)divs }
>> DN:=If(divs=-1,divs+PREV,PREV); { acumulate of (-)divs }
>>
>> Abs(DP/DN); {Ratio}
>>
>> Filter:
>> ======
>>
>> colA<>0
>>
>> -------
>> Thank U in advance.
>> Arrivederci!
>> Pablo
>>
p> Yahoo! Groups Links
Pablo Bozzolo
---
Contact info:
Movil: 221 5384617
E-mail: italoarg76@xxxxxxxx
MSN: italoarg76@xxxxxxxxxxx
ICQ: 77207033
SPONSORED LINKS Business finance course Business to business finance Small
business finance
Business finance consultant Business finance magazine Business
finance schools
----------------------------------------------------------------------------
----
YAHOO! GROUPS LINKS
a.. Visit your group "equismetastock" on the web.
b.. To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
----------------------------------------------------------------------------
----
[Non-text portions of this message have been removed]
________________________________________________________________________
________________________________________________________________________
Message 2
From: "Paolo" italoarg76@xxxxxxxx
Date: Sun May 28, 2006 6:29pm(PDT)
Subject: "what am I doing wrong?"
Roy,
THANK U VERY MUCH for your suggestions. They are appreciated!
I've created my explorer "di novo", using default peridicity, records to be
loaded, etc. I've checked ALL.
It's true I DO NOT TRUST in Metastock because it's new for me.
So.... MAYBE I should ask myself "what am I doing wrong?" as you said.
Anyway, I guess there is something wrong with Metastock.....
If you are a *Metastock defender*, I invite you to test my code.
If you are able to pick the same values from the "indicator" and the
"explorer" then I'll congratulate you :) ... and I'll become very happy
man (no more conflicts!)
I still thinking ANY CODE should make the same results INDEPENDENTLY if it's
in the Indicator Builder or Explorer (!)
The code to try is:
ColA:
====
{ User inputs }
pds:=25; {for calculus of divergences}
p1:=20; { Divergence pds for short moving average } p2:=200; { Divergence
pds for long moving average }
s1:= Mov(C,p1,E);
s2:= Mov(C,p2,E);
{ Divergences }
divs:=If(s1<Mov(s1,pds,E) AND (s1<Ref(s1,-pds)) AND
s2>Mov(s2,pds,E) AND (s2>Ref(s2,-pds)),-1,
If(s1>Mov(s1,pds,E) AND (s1>Ref(s1,-pds)) AND
s2<Mov(s2,pds,E) AND (s2<Ref(s2,-pds)) ,1,0));
DP:=If(divs=1,divs+PREV,PREV); { acumulate of (+)divs }
DN:=If(divs=-1,divs+PREV,PREV); { acumulate of (-)divs }
Abs(DP/DN); {Ratio}
Filter: (of course, NOT in the indicator) =======
ColA<>0
--------
Thank U in advance!
Best reagards,
Pablo
RL> Hi Paolo
RL> I suggest that you Edit your exploration, look under Options, and
RL> set Exploration Date to Most Recent Date. Each exploration has this
choice, and if you created your exploration by copying from another that was
set to Specific Date then the new exploration will have the same setting.
RL> Another distinct possibility is that you have Periodicity set
incorrectly - this will also give values that are way off.
RL> The one thing that you can be sure of is that your exploration is
RL> doing exactly what you have told it to do. You are responsible for
RL> errors in the results, and accepting that will enable you to follow
RL> through and fix mistakes. Assuming that the problem lies with the
Explorer makes finding the problem much harder because you'll be looking in
the wrong places. I'm not suggesting that you personally are blaming
MetaStock, but offering my thoughts for those that whose first thought is
such a situation is to ask "what is MetaStock doing wrong?" when the
question should be "what am I doing wrong?".
RL> Regards
RL> Roy
RL> www.metastocktips.co.nz
RL> ----- Original Message -----
RL> From: Paolo
RL> To: pumrysh
RL> Sent: Monday, May 29, 2006 5:14 AM
RL> Subject: [Norton AntiSpam] [SPAM] Re: [EquisMetaStock Group] Re:
RL> Explorer (!)(!)(
RL> Preston:
RL> You was RIGHT about explorer wasn't loading ALL the records
RL> BUT now after load 10,000 records, with other values, the PROBLEM
RL> STILL (continue) The values are so diferent as: 1.5061 (explorer)
RL> vs. 0.083(indicator) I thought after load ALL the records the
RL> problem wold be solved but now I'm afraid it has no solution.
RL> It's crazy the explorer takes values from 1996 when the stock data
RL> of that security (CEPU2) starts in 2004 !!!!!!! :O
RL> Thank U for help me.
RL> Best regads,
RL> Pablo
p>> You explored a different length of data. Make sure that the
p>> displayed data and explored data are the same. When you first open
p>> the explorer window, you will notice an explore, reports, and
p>> options button at the bottom. Go into options to set the looback
p>> period.
p>> Preston
p>> --- In equismetastock@xxxxxxxxxxxxxxx, Paolo <italoarg76@xxx> wrote:
>>>
>>> Hi!!!
>>> I've developed an indicator and then I put it into the
>>> explorer (as Jose Silve teach me) The values calculated by the
>>> explorer are VERY diferent of the indicator and I could to see the
>>> explorer values were WRONG!!!
>>> What's happen with the explorer ?!!
>>> How can I use this tool if it fails so much ?!!!!!!!!!!!!!!!!!
>>> The explorer code tried was:
>>>
>>> ColA:
>>> ====
>>>
>>> { User inputs }
>>> pds:=25; {for calculus of divergences} p1:=20; { Divergence pds for
>>> short moving average } p2:=200; { Divergence pds for long moving
>>> average }
>>>
>>> s1:= Mov(C,p1,E);
>>> s2:= Mov(C,p2,E);
>>>
>>> { Divergences }
>>>
>>> divs:=If(s1<Mov(s1,pds,E) AND (s1<Ref(s1,-pds)) AND
>>> s2>Mov(s2,pds,E) AND (s2>Ref(s2,-pds)),-1,
>>> If(s1>Mov(s1,pds,E) AND (s1>Ref(s1,-pds)) AND
>>> s2<Mov(s2,pds,E) AND (s2<Ref(s2,-pds)) ,1,0));
>>>
>>> DP:=If(divs=1,divs+PREV,PREV); { acumulate of (+)divs }
>>> DN:=If(divs=-1,divs+PREV,PREV); { acumulate of (-)divs }
>>>
>>> Abs(DP/DN); {Ratio}
>>>
>>> Filter:
>>> ======
>>>
>>> colA<>0
>>>
>>> -------
>>> Thank U in advance.
>>> Arrivederci!
>>> Pablo
>>>
p>> Yahoo! Groups Links
RL> Pablo Bozzolo
RL> ---
RL> Contact info:
RL> Movil: 221 5384617
RL> E-mail: italoarg76@xxxxxxxx
RL> MSN: italoarg76@xxxxxxxxxxx
RL> ICQ: 77207033
RL> SPONSORED LINKS Business finance course Business to business finance
Small business finance
RL> Business finance consultant Business finance magazine
RL> Business finance schools
RL> --------------------------------------------------------------------
RL> ------------
RL> YAHOO! GROUPS LINKS
RL> a.. Visit your group "equismetastock" on the web.
RL> b.. To unsubscribe from this group, send an email to:
RL> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
RL> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
RL> --------------------------------------------------------------------
RL> ------------
RL> [Non-text portions of this message have been removed]
RL> Yahoo! Groups Links
Pablo Bozzolo
---
Contact info:
Movil: 221 5384617
E-mail: italoarg76@xxxxxxxx
MSN: italoarg76@xxxxxxxxxxx
ICQ: 77207033
________________________________________________________________________
________________________________________________________________________
Message 3
From: "Roy Larsen" rlarsen@xxxxxxxxxxxxxx
Date: Sun May 28, 2006 8:13pm(PDT)
Subject: Re: "what am I doing wrong?"
Hi Pablo
I think the mistake is your's, though not one of the possibilities I
suggested. This code is counting events (divergences), so it follows that to
get the same result from the Explorer as the Indicator Builder you MUST
compare apples with apples (use the same number of bars). The Explorer only
reports to 4 decimal digits so this value may be rounded (and therefore
different) from the value on a chart via the data window. This however is an
issue that most of us can live with, and it's not related to your problem.
If MetaStock is set to open 2500 bars for a chart then you must explore 2500
bars also to be sure of capturing the same number of divergences and
generating the same results from the exploration. Even a difference of one
bar could legitimately give a different result. This is a fact of life when
accumulating data - your starting point is (date, time or bar) has a big
influence on the final result. The earlier you start accumulating the
greater the probability that you will accumulate more divergences.
This comes back to what Preston told you - "Make sure that the displayed
data and the explored data are the same". In many situations it's reasonable
to expect that an accurate result is possible by exploring many fewer bars
than usually required for an open chart, but the particular formula you're
using demands that you use exactly the same number of bars as the chart
you're are comparing the result with. To do otherwise, as you have proved,
generates different values from the accumulations and therefore different
results.
I don't need to be a defender of MetaStock. MS is not perfect, but most
reported problems from new users are not the result of MetaStock making the
mistakes.
Regards
Roy
www.metastocktips.co.nz
----- Original Message -----
From: Paolo
To: Roy Larsen
Sent: Monday, May 29, 2006 1:37 PM
Subject: [Norton AntiSpam] [SPAM] [EquisMetaStock Group] "what am I doing
wrong?"
Roy,
THANK U VERY MUCH for your suggestions. They are appreciated!
I've created my explorer "di novo", using default peridicity, records to be
loaded, etc. I've checked ALL.
It's true I DO NOT TRUST in Metastock because it's new for me.
So.... MAYBE I should ask myself "what am I doing wrong?" as you said.
Anyway, I guess there is something wrong with Metastock.....
If you are a *Metastock defender*, I invite you to test my code.
If you are able to pick the same values from the "indicator" and the
"explorer" then I'll congratulate you :) ... and I'll become very happy
man (no more conflicts!)
I still thinking ANY CODE should make the same results INDEPENDENTLY if it's
in the Indicator Builder or Explorer (!)
The code to try is:
ColA:
====
{ User inputs }
pds:=25; {for calculus of divergences}
p1:=20; { Divergence pds for short moving average } p2:=200; { Divergence
pds for long moving average }
s1:= Mov(C,p1,E);
s2:= Mov(C,p2,E);
{ Divergences }
divs:=If(s1<Mov(s1,pds,E) AND (s1<Ref(s1,-pds)) AND
s2>Mov(s2,pds,E) AND (s2>Ref(s2,-pds)),-1,
If(s1>Mov(s1,pds,E) AND (s1>Ref(s1,-pds)) AND
s2<Mov(s2,pds,E) AND (s2<Ref(s2,-pds)) ,1,0));
DP:=If(divs=1,divs+PREV,PREV); { acumulate of (+)divs }
DN:=If(divs=-1,divs+PREV,PREV); { acumulate of (-)divs }
Abs(DP/DN); {Ratio}
Filter: (of course, NOT in the indicator) =======
ColA<>0
--------
Thank U in advance!
Best reagards,
Pablo
RL> Hi Paolo
RL> I suggest that you Edit your exploration, look under Options, and
RL> set Exploration Date to Most Recent Date. Each exploration has this
choice, and if you created your exploration by copying from another that was
set to Specific Date then the new exploration will have the same setting.
RL> Another distinct possibility is that you have Periodicity set
incorrectly - this will also give values that are way off.
RL> The one thing that you can be sure of is that your exploration is
RL> doing exactly what you have told it to do. You are responsible for
RL> errors in the results, and accepting that will enable you to follow
RL> through and fix mistakes. Assuming that the problem lies with the
Explorer makes finding the problem much harder because you'll be looking in
the wrong places. I'm not suggesting that you personally are blaming
MetaStock, but offering my thoughts for those that whose first thought is
such a situation is to ask "what is MetaStock doing wrong?" when the
question should be "what am I doing wrong?".
RL> Regards
RL> Roy
RL> www.metastocktips.co.nz
RL> ----- Original Message -----
RL> From: Paolo
RL> To: pumrysh
RL> Sent: Monday, May 29, 2006 5:14 AM
RL> Subject: [Norton AntiSpam] [SPAM] Re: [EquisMetaStock Group] Re:
RL> Explorer (!)(!)(
RL> Preston:
RL> You was RIGHT about explorer wasn't loading ALL the records
RL> BUT now after load 10,000 records, with other values, the PROBLEM
RL> STILL (continue) The values are so diferent as: 1.5061 (explorer)
RL> vs. 0.083(indicator) I thought after load ALL the records the
RL> problem wold be solved but now I'm afraid it has no solution.
RL> It's crazy the explorer takes values from 1996 when the stock data
RL> of that security (CEPU2) starts in 2004 !!!!!!! :O
RL> Thank U for help me.
RL> Best regads,
RL> Pablo
p>> You explored a different length of data. Make sure that the
p>> displayed data and explored data are the same. When you first open
p>> the explorer window, you will notice an explore, reports, and
p>> options button at the bottom. Go into options to set the looback
p>> period.
p>> Preston
p>> --- In equismetastock@xxxxxxxxxxxxxxx, Paolo <italoarg76@xxx> wrote:
>>>
>>> Hi!!!
>>> I've developed an indicator and then I put it into the
>>> explorer (as Jose Silve teach me) The values calculated by the
>>> explorer are VERY diferent of the indicator and I could to see the
>>> explorer values were WRONG!!!
>>> What's happen with the explorer ?!!
>>> How can I use this tool if it fails so much ?!!!!!!!!!!!!!!!!!
>>> The explorer code tried was:
>>>
>>> ColA:
>>> ====
>>>
>>> { User inputs }
>>> pds:=25; {for calculus of divergences} p1:=20; { Divergence pds for
>>> short moving average } p2:=200; { Divergence pds for long moving
>>> average }
>>>
>>> s1:= Mov(C,p1,E);
>>> s2:= Mov(C,p2,E);
>>>
>>> { Divergences }
>>>
>>> divs:=If(s1<Mov(s1,pds,E) AND (s1<Ref(s1,-pds)) AND
>>> s2>Mov(s2,pds,E) AND (s2>Ref(s2,-pds)),-1,
>>> If(s1>Mov(s1,pds,E) AND (s1>Ref(s1,-pds)) AND
>>> s2<Mov(s2,pds,E) AND (s2<Ref(s2,-pds)) ,1,0));
>>>
>>> DP:=If(divs=1,divs+PREV,PREV); { acumulate of (+)divs }
>>> DN:=If(divs=-1,divs+PREV,PREV); { acumulate of (-)divs }
>>>
>>> Abs(DP/DN); {Ratio}
>>>
>>> Filter:
>>> ======
>>>
>>> colA<>0
>>>
>>> -------
>>> Thank U in advance.
>>> Arrivederci!
>>> Pablo
>>>
p>> Yahoo! Groups Links
RL> Pablo Bozzolo
RL> ---
RL> Contact info:
RL> Movil: 221 5384617
RL> E-mail: italoarg76@xxxxxxxx
RL> MSN: italoarg76@xxxxxxxxxxx
RL> ICQ: 77207033
RL> SPONSORED LINKS Business finance course Business to business finance
Small business finance
RL> Business finance consultant Business finance magazine
RL> Business finance schools
RL> --------------------------------------------------------------------
RL> ------------
RL> YAHOO! GROUPS LINKS
RL> a.. Visit your group "equismetastock" on the web.
RL> b.. To unsubscribe from this group, send an email to:
RL> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
RL> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
RL> --------------------------------------------------------------------
RL> ------------
RL> [Non-text portions of this message have been removed]
RL> Yahoo! Groups Links
Pablo Bozzolo
---
Contact info:
Movil: 221 5384617
E-mail: italoarg76@xxxxxxxx
MSN: italoarg76@xxxxxxxxxxx
ICQ: 77207033
SPONSORED LINKS Business finance course Business to business finance Small
business finance
Business finance consultant Business finance magazine Business
finance schools
----------------------------------------------------------------------------
----
YAHOO! GROUPS LINKS
a.. Visit your group "equismetastock" on the web.
b.. To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
----------------------------------------------------------------------------
----
[Non-text portions of this message have been removed]
________________________________________________________________________
________________________________________________________________________
Message 4
From: "tan ming" reminiscenostalgia@xxxxxxxxxxx
Date: Sun May 28, 2006 10:28pm(PDT)
Subject: Signal Coding
Hi,anyone knows how to code the following
1) A signal when an indicator goes from under 0.3 to 0.6 within 10 days
period or less
2) A signal when an indicator goes above 0.6 twice within a 3 months period
Tks.
Dan
_________________________________________________________________
Get an advanced look at the new version of MSN Messenger.
http://messenger.msn.com.my/Beta/Default.aspx
________________________________________________________________________
________________________________________________________________________
Message 5
From: "Roy Larsen" rlarsen@xxxxxxxxxxxxxx
Date: Sun May 28, 2006 10:59pm(PDT)
Subject: Re: Signal Coding
Hi Dan
> 1) A signal when an indicator goes from under 0.3 to 0.6 within 10 days
period or less
Try this.
X:=Fml("your indicator");
BarsSince(X<0.3)<=10 AND X>0.6;
To truncate the signal to TRUE for one bar only, try this.
X:=Fml("your indicator")
Y:=BarsSince(X<0.3)<=10 AND X>0.6;
Y AND Alert(Y=0,2);
> 2) A signal when an indicator goes above 0.6 twice within a 3 months
period
Try this.
X:=Fml("your indicator");
Sum(X>0.6,65)>1;
65 days is a proxy for 3 months. Creating a more accurate 3-month check
period would take a little more work.
Regards
Roy
www.metastocktips.co.nz
_________________________________________________________________
Get an advanced look at the new version of MSN Messenger.
http://messenger.msn.com.my/Beta/Default.aspx
SPONSORED LINKS Business finance course Business to business finance Small
business finance
Business finance consultant Business finance magazine Business
finance schools
----------------------------------------------------------------------------
----
YAHOO! GROUPS LINKS
a.. Visit your group "equismetastock" on the web.
b.. To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
----------------------------------------------------------------------------
----
[Non-text portions of this message have been removed]
________________________________________________________________________
________________________________________________________________________
Message 6
From: "ccwoam" ccwoam@xxxxxxxxxxxx
Date: Mon May 29, 2006 2:02am(PDT)
Subject: Metastock ver 4.5(dos based)
HI,
is there anyone using ms 4.5 rather than window based,
Could sbdy advise how to scan for the data to use ver 4.5
________________________________________________________________________
________________________________________________________________________
Message 7
From: "T.Krishna Prasad" totkp@xxxxxxxxx
Date: Mon May 29, 2006 2:05am(PDT)
Subject: ODIN + Metastock
Hi,
sorry this is a repeat question for which i was uable to find an
answer even after searching the FAQ section
I know that it is possible to link ODIN to Metastock but i am just
unable to find a way of doing it, could some one tell me any software
or method to do the same.
TKP
________________________________________________________________________
________________________________________________________________________
Message 8
From: "Dusant" dusant_ap@xxxxxxxxxxx
Date: Mon May 29, 2006 4:15am(PDT)
Subject: Re: Metastock ver 4.5(dos based)
I still have my good old MS for DOS, but do not use it very often. The main
issue which kills its use is the y2k issue and the limitation of 256 stocks
per folder.
The explorations etc work in the same manner but ignore data after 31 Dec
1999. The charts are not affected.
Dusant
----- Original Message -----
From: ccwoam
To: equismetastock@xxxxxxxxxxxxxxxx
Sent: Monday, May 29, 2006 1:34 PM
Subject: [EquisMetaStock Group] Metastock ver 4.5(dos based)
HI,
is there anyone using ms 4.5 rather than window based,
Could sbdy advise how to scan for the data to use ver 4.5
---------------------------------
How should a woman equip herself to travel safe even when she's
unescorted? Share your knowledge with real people on Yahoo! India Answers
Send free SMS to your Friends on Mobile from your Yahoo! Messenger Download
now
[Non-text portions of this message have been removed]
________________________________________________________________________
________________________________________________________________________
Message 9
From: "Lionel Issen" lissen@xxxxxxxxxxxxx
Date: Mon May 29, 2006 9:05am(PDT)
Subject: Re: Metastock ver 4.5(dos based)
Because of these limitations, no-one should even try to use none windows
versions of Metastock.
Lionel
_____
From: equismetastock@xxxxxxxxxxxxxxx [mailto:equismetastock@xxxxxxxxxxxxxxx]
On Behalf Of Dusant
Sent: Monday, May 29, 2006 5:34 AM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: Re: [EquisMetaStock Group] Metastock ver 4.5(dos based)
I still have my good old MS for DOS, but do not use it very often. The main
issue which kills its use is the y2k issue and the limitation of 256 stocks
per folder.
The explorations etc work in the same manner but ignore data after 31 Dec
1999. The charts are not affected.
Dusant
----- Original Message -----
From: ccwoam
To: equismetastock@xxxxxxxxxxxxxxxx
Sent: Monday, May 29, 2006 1:34 PM
Subject: [EquisMetaStock Group] Metastock ver 4.5(dos based)
HI,
is there anyone using ms 4.5 rather than window based,
Could sbdy advise how to scan for the data to use ver 4.5
---------------------------------
How should a woman equip herself to travel safe even when she's
unescorted? Share your knowledge with real people on Yahoo! India Answers
Send free SMS to your Friends on Mobile from your Yahoo! Messenger Download
now
[Non-text portions of this message have been removed]
SPONSORED LINKS
Business
<http://groups.yahoo.com/gads?t=ms&k=Business+finance+course&w1=Business+fin
ance+course&w2=Business+to+business+finance&w3=Small+business+finance&w4=Bus
iness+finance+consultant&w5=Business+finance+magazine&w6=Business+finance+sc
hools&c=6&s=185&.sig=I8jDsORmsaYn0BeqghcJ2w> finance course
Business
<http://groups.yahoo.com/gads?t=ms&k=Business+to+business+finance&w1=Busines
s+finance+course&w2=Business+to+business+finance&w3=Small+business+finance&w
4=Business+finance+consultant&w5=Business+finance+magazine&w6=Business+finan
ce+schools&c=6&s=185&.sig=fCzze7cxm1K7TVKkzAaOrA> to business finance
Small
<http://groups.yahoo.com/gads?t=ms&k=Small+business+finance&w1=Business+fina
nce+course&w2=Business+to+business+finance&w3=Small+business+finance&w4=Busi
ness+finance+consultant&w5=Business+finance+magazine&w6=Business+finance+sch
ools&c=6&s=185&.sig=v9sWAno7Kz4WuL8Tadcdhw> business finance
Business
<http://groups.yahoo.com/gads?t=ms&k=Business+finance+consultant&w1=Business
+finance+course&w2=Business+to+business+finance&w3=Small+business+finance&w4
=Business+finance+consultant&w5=Business+finance+magazine&w6=Business+financ
e+schools&c=6&s=185&.sig=d1xwT3WL0E6XBf6cAV5BXA> finance consultant
Business
<http://groups.yahoo.com/gads?t=ms&k=Business+finance+magazine&w1=Business+f
inance+course&w2=Business+to+business+finance&w3=Small+business+finance&w4=B
usiness+finance+consultant&w5=Business+finance+magazine&w6=Business+finance+
schools&c=6&s=185&.sig=qphRINaNuVm_6bwoQxgUmg> finance magazine
Business
<http://groups.yahoo.com/gads?t=ms&k=Business+finance+schools&w1=Business+fi
nance+course&w2=Business+to+business+finance&w3=Small+business+finance&w4=Bu
siness+finance+consultant&w5=Business+finance+magazine&w6=Business+finance+s
chools&c=6&s=185&.sig=1RfnhYZpV99RKWRZzSH4gA> finance schools
_____
YAHOO! GROUPS LINKS
* Visit your group "equismetastock
<http://groups.yahoo.com/group/equismetastock> " on the web.
* To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<mailto:equismetastock-unsubscribe@xxxxxxxxxxxxxxx?subject=Unsubscribe>
* Your use of Yahoo! Groups is subject to the Yahoo!
<http://docs.yahoo.com/info/terms/> Terms of Service.
_____
[Non-text portions of this message have been removed]
________________________________________________________________________
________________________________________________________________________
------------------------------------------------------------------------
Yahoo! Groups Links
------------------------------------------------------------------------
------------------------ Yahoo! Groups Sponsor --------------------~-->
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|