PureBytes Links
Trading Reference Links
|
Gram,
Make it "animal crackers" and you gotta deal!
G.
On 8 Feb 2004 11:38:39 -0000 Metastockusers@xxxxxxxxxxxxxxx writes:
> ------------------------ Yahoo! Groups Sponsor
>
> There are 9 messages in this issue.
>
> Topics in this digest:
>
> 1. Re: Digest Number 1020
> From: "Gram" <gramario@xxxxxx>
> 2. Gann HiLo
> From: "Henry Z Kaczmarczyk" <henry1224@xxxxxxxxx>
> 3. Re: Digest Number 1020
> From: sayakat@xxxxxxxx
> 4. HOTTEST AFFILIATE Program on the net!
> From: "ATTN: AFFILIATES WORLDWIDE"
> <prentice@xxxxxxxxxxxxxx>
> 5. Re: Gann HiLo
> From: "Bill Hebert" <billhebert@xxxxxxxxxxx>
> 6. Fw: MS "Index is damaged"
> From: "Russell Allen" <russall@xxxxxxxxxxxxxx>
> 7. Re: MS "Index is damaged"
> From: "Dusant@xxxxxxxxxxxxxxxxxx"
> <dusant@xxxxxxxxxxxxxxxxxx>
> 8. Heikin-Ashi
> From: Dan C <dan.danc@xxxxxxxxxxxxx>
> 9. Re: Heikin-Ashi
> From: "Dusant@xxxxxxxxxxxxxxxxxx"
> <dusant@xxxxxxxxxxxxxxxxxx>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 1
> Date: Sat, 7 Feb 2004 17:08:48 +0100
> From: "Gram" <gramario@xxxxxx>
> Subject: Re: Digest Number 1020
>
> Hi Greg,
> Was just thinking. Your query does not sound too hard. Now if anyone
> can give me the formula to find the high of this week, the low of
> this week, and the close of next week, then I will be the first to
> give them a biscuit.
> Psmith.
>
> Message: 3
> Date: Fri, 06 Feb 2004 15:15:04 -0000
> From: "mc_gregor25" <gregory_p25@xxxxxxxxxxx>
> Subject: Another question?????
>
> I look for the formula which gives me the:
>
> 1 , The High of the last week.
> 2 , The low of the last week.
> 3 , The close of the last week.
>
> Thanks
>
> greg
>
>
>
> [This message contained attachments]
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 2
> Date: Sat, 07 Feb 2004 16:14:00 -0000
> From: "Henry Z Kaczmarczyk" <henry1224@xxxxxxxxx>
> Subject: Gann HiLo
>
> this is the Gann Hi LO indicator
>
> HLd:=If(C>Ref(Mov(H,3,S),-1),1,
> If(C<Ref(Mov(L,3,S),-1),-1,0));
> HLv:=ValueWhen(1,HLd<>0,HLd);
> HiLo:=If(HLv=-1,Mov(H,3,S),Mov(L,3,S));
> HiLo;
>
> This is the Gann Swing Indicator
>
> {Market swing is defined as:
> Up = 2 higher highs,
> Down = 2 lower highs.}
> Us:=BarsSince((H > Ref(H,-1)) AND (Ref(H,-1) >
> Ref(H,-2)));
> Ds:=BarsSince((L < Ref(L,-1)) AND (Ref(L,-1) <
> Ref(L,-2)));
> Sd1:=If(Us=0,
> {then}If(Ref(L,-1)<>LowestSince(1,Ds=0,L),
> {then}1,
> {else}0),
> {else}If(Ds=0,
> {then}If(Ref(H,-1)<>
> HighestSince(1,Us=0,H),
> {then}-1,
> {else}0),
> {else}0));
> Sd2:=If(Sd1=1,
> {then} If(Ref(BarsSince(Sd1=1),-1) >
> Ref(BarsSince(Sd1=-1),-1),
> {then}1,
> {else}0),
> {else} If(Sd1=-1,
> {then}If(Ref(BarsSince(Sd1=1),-1) <
> Ref(BarsSince(Sd1=-1),-1),
> {then}-1,
> {else}0),
> {else}0));
> TD1:=ValueWhen(1,Sd2<>0,Sd2);
> Td1;
>
> This is the Gann Trend Indicatot
>
> {Swing Direction}
> Sd:= FmlVar("GANN-Swing","TD1") ;
> {Swing Change High}
> Sch:=If(Sd=1 AND Ref(sd,-1)=-1,
> {then}1,
> {else}0);
> {Swing Change Low}
> Scl:=If(Sd=-1 AND Ref(Sd,-1)=1,
> {then}1,
> {else}0);
> {Peak Value}
> Pv:=If(Scl=1,
> {then}HighestSince(1,Sch=1,H),
> {else}0);
> {Trough Value}
> Tv:=If(Sch=1,
> {then}LowestSince(1,Scl=1,L),
> {else}0);
> {Trend Direction}
> Td:=If(H>ValueWhen(1,Pv>0,Pv),
> {then}1,
> {else}If(L<ValueWhen(1,Tv>0,Tv),
> {then}-1,
> {else}0));
> {UpTrend=1 DownTrend =-1}
> Tdv:=ValueWhen(1,Td<>0,Td);
> Tdv;
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 3
> Date: Sat, 7 Feb 2004 16:40:06 GMT
> From: sayakat@xxxxxxxx
> Subject: Re: Digest Number 1020
>
>
>
>
> greg,
>
> For H,L,C of last week:
>
> HOLW:=ValueWhen(1,DayOfWeek()=1,HighestSince(2,DayOfWeek()=1,H));
>
> LOLW:=ValueWhen(1,DayOfWeek()=1,LowestSince(2,DayOfWeek()=1,L));
>
> CLW:=ValueWhen(1,DayOfWeek()=1,ValueWhen(1,DayOfWeek()=5,C));
>
> HOLW;LOLW;CLW;
>
> I think that'll do it.
>
> G.
>
> Message: 1
> Date: Fri, 06 Feb 2004 14:43:42 -0000
> From: "mc_gregor25" <gregory_p25@xxxxxxxxxxx>
> Subject: Re: [spam] Help needed with formula
>
> The Ft is not decalred this is the problem....
>
> i can not find it....
>
> greg
>
>
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 2
> Date: Fri, 06 Feb 2004 15:11:00 -0000
> From: "mc_gregor25" <gregory_p25@xxxxxxxxxxx>
> Subject: Re: [spam] Help needed with formula
>
> Thanx
>
> Now it works but it is not what i am seraching...
>
> greg
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 3
> Date: Fri, 06 Feb 2004 15:15:04 -0000
> From: "mc_gregor25" <gregory_p25@xxxxxxxxxxx>
> Subject: Another question?????
>
> I look for the formula which gives me the:
>
> 1 , The High of the last week.
> 2 , The low of the last week.
> 3 , The close of the last week.
>
> Thanks
>
> greg
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 4
> Date: Fri, 6 Feb 2004 16:41:10 +0000 GMT
> From: "on mobile" <adet@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
> Subject: Re: Re: [spam] Help needed with formula
>
> Good stuff then. What was the problem?
>
>
> -----Original Message-----
> From: "mc_gregor25" <gregory_p25@xxxxxxxxxxx>
> Date: Fri, 06 Feb 2004 15:11:00
> To:Metastockusers@xxxxxxxxxxxxxxx
> Subject: [Metastockusers] Re: [spam] Help needed with formula
>
> Thanx
>
> Now it works but it is not what i am seraching...
>
> greg
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
> ------------------
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 5
> Date: Fri, 6 Feb 2004 16:40:08 +0000 GMT
> From: "on mobile" <adet@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
> Subject: Re: Re: [spam] Help needed with formula
>
> It was no FT but FT-FBP. I saw it!
>
> It was a sectional declaration. I never saw FT in your code.
>
> Send me everything you've got and I will take a look this weekend.
>
>
> -----Original Message-----
> From: "mc_gregor25" <gregory_p25@xxxxxxxxxxx>
> Date: Fri, 06 Feb 2004 14:43:42
> To:Metastockusers@xxxxxxxxxxxxxxx
> Subject: [Metastockusers] Re: [spam] Help needed with formula
>
> The Ft is not decalred this is the problem....
>
> i can not find it....
>
> greg
>
>
>
>
>
>
> Yahoo! Groups Links
>
>
>
>
>
>
> ------------------
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 6
> Date: Fri, 06 Feb 2004 16:58:25 -0000
> From: "mc_gregor25" <gregory_p25@xxxxxxxxxxx>
> Subject: Re: [spam] Help needed with formula
>
> all i have is this....
>
> but if you separate it it works... i dont know exacttly why....
>
>
> Mc1:=BarsSince(DayOfWeek()=1);
> Fc1:=BarsSince(DayOfWeek()=5);
> Fc2:=Ref(BarsSince(DayOfWeek()=5),-1)-1;
> {Fixed Balance Point Calculation}
> FBC:=If(Mc1=0 AND Fc1>2,
> {then}(Ref(HHV(H,LastValue(mc1)),-1)+
> Ref(LLV(L,LastValue(Mc1)),-1)+
> Ref(C,-1))/3,
> {else}If(Fc1=0 AND Mc1>5,
> {then}(HHV(H,LastValue(Fc2))+
> LLV(L,LastValue(Fc2))+C)/3,
> {else}If(Fc1=0,
> {then}(HHV(H,LastValue(Mc1))+
> LLV(L,LastValue(Mc1))+C)/3,
> {else}0)));
> {Fixed Balance Point Plot}
> FBP:=ValueWhen(1,FBC>0,FBC);
> FBP;
>
> {NOTE: under Color/Style options, change
> plot to last "style" option}
>
> {Weekly Price Range Calculation}
> Mc1:=BarsSince(DayOfWeek()=1);
> Fc1:=BarsSince(DayOfWeek()=5);
> Fc2:=Ref(BarsSince(DayOfWeek()=5),-1)-1;
> WRC:=If(Mc1=0 AND Fc1>2,
> {then}Ref(HHV(H,LastValue(mc1)),-1)-
> Ref(LLV(L,LastValue(Mc1)),-1),
> {else}If(Fc1=0 AND Mc1>5,
> {then}HHV(H,LastValue(Fc2))-
> LLV(L,LastValue(Fc2)),
> {else}If(Fc1=0,
> {then}HHV(H,LastValue(Mc1))-
> LLV(L,LastValue(Mc1)),
> {else}0)));
> WRP:=ValueWhen(1,WRC>0,WRC);
> {Resistance Range}
> RR1:= FmlVar("FT-FBP","FBP")+(WRP*.5);
> RR2:= FmlVar("FT-FBP","FBP")+(WRP*.618);
> {Support Range}
> SR1:= FmlVar("FT-FBP","FBP")-(WRP*.5);
> SR2:= FmlVar("FT-FBP","FBP")-(WRP*.618);
> {Plot Ranges}
> RR1;
> RR2;
> SR1;
> SR2;
> .........
>
>
> So what i made is to intruduce this like FT-FBP
>
> Mc1:=BarsSince(DayOfWeek()=1);
> Fc1:=BarsSince(DayOfWeek()=5);
> Fc2:=Ref(BarsSince(DayOfWeek()=5),-1)-1;
> {Fixed Balance Point Calculation}
> FBC:=If(Mc1=0 AND Fc1>2,
> {then}(Ref(HHV(H,LastValue(mc1)),-1)+
> Ref(LLV(L,LastValue(Mc1)),-1)+
> Ref(C,-1))/3,
> {else}If(Fc1=0 AND Mc1>5,
> {then}(HHV(H,LastValue(Fc2))+
> LLV(L,LastValue(Fc2))+C)/3,
> {else}If(Fc1=0,
> {then}(HHV(H,LastValue(Mc1))+
> LLV(L,LastValue(Mc1))+C)/3,
> {else}0)));
> {Fixed Balance Point Plot}
> FBP:=ValueWhen(1,FBC>0,FBC);
> FBP;
>
> and this like another indicator
>
>
> {FT Weekly Price Range}
> Mc1:=BarsSince(DayOfWeek()=1);
> Fc1:=BarsSince(DayOfWeek()=5);
> Fc2:=Ref(BarsSince(DayOfWeek()=5),-1)-1;
> WRC:=If(Mc1=0 AND Fc1>2,
> {then}Ref(HHV(H,LastValue(mc1)),-1)-
> Ref(LLV(L,LastValue(Mc1)),-1),
> {else}If(Fc1=0 AND Mc1>5,
> {then}HHV(H,LastValue(Fc2))-
> LLV(L,LastValue(Fc2)),
> {else}If(Fc1=0,
> {then}HHV(H,LastValue(Mc1))-
> LLV(L,LastValue(Mc1)),
> {else}0)));
> WRP:=ValueWhen(1,WRC>0,WRC);
> {Resistance Range}
> RR0:= FmlVar("FT-FBP","FBP")+(WRP*.236);
> RR1:= FmlVar("FT-FBP","FBP")+(WRP*.382);
> RR2:= FmlVar("FT-FBP","FBP")+(WRP*.5);
> RR3:= FmlVar("FT-FBP","FBP")+(WRP*.618);
> {Support Range}
> SR0:= FmlVar("FT-FBP","FBP")-(WRP*.236);
> SR1:= FmlVar("FT-FBP","FBP")-(WRP*.382);
> SR2:= FmlVar("FT-FBP","FBP")-(WRP*.5);
> SR3:= FmlVar("FT-FBP","FBP")-(WRP*.618);
> {Plot Ranges}
> RR0;
> RR1;
> RR2;
> RR3;
> SR0;
> SR1;
> SR2;
> SR3;
>
> and it works
>
> this is all...
>
> thanks
>
> greg
>
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 7
> Date: Fri, 06 Feb 2004 17:10:20 -0000
> From: "jim" <jimk_30045@xxxxxxxxx>
> Subject: tc2k v5.3 data load problem
>
> I am attempting to load the new cd from worden and get the following
>
> error messages...
>
> "you have inserted an outdated cd.Insert the most recent one"
>
> the most recent one is the one i am trying to load...version 5.3...
>
> after i click again i get into the program and then only get data
> for
> a month. So i figure i have to update..so i click on update and it
> appears to update the files and then I get "error building history".
>
> so i click okay and it hangs up for a long time. i finally have to
> do
> alt-c-del to end task and close tc2k altogether..
>
> 2 question's...going into windows explorer and going to program
> files
> and then double clicking on tc2k...scroll down to tc2000reginfo.exe
> and double click...what are your values for files\cdhistory and
> files\fastcdhistory...
>
> any help would be appreciated...thanks..jim...
>
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 8
> Date: Sat, 7 Feb 2004 07:14:27 +1300
> From: "Roy Larsen" <rlarsen@xxxxxxxxxxxxxx>
> Subject: Re: Another question?????
>
> Greg
>
> > I look for the formula which gives me the:
> >
> > 1 , The High of the last week.
> > 2 , The low of the last week.
> > 3 , The close of the last week.
> >
> > Thanks
> >
> > greg
>
> {Weekly OHLC}
> {Copyright© 2003 Roy Larsen}
> {rlarsen@xxxxxxxxxxxxxx}
> {use on daily charts}
> Q:=Input("Dynamic Current Week, Yes=1",0,1,0);
> {0=Update when end of current week is known}
> {1=MS compatible dynamic current week}
> M:=DayOfWeek()<=ValueWhen(2,1,DayOfWeek());
> F:=DayOfWeek()=5;
> A:=LastValue(Cum(1)-1)=Cum(1);
> B:=LastValue(Cum(1))=Cum(1);
> J:=If(F,1,If(Alert(F,2)=0 AND M,2,0));
> J:=If(A+LastValue(J)>2 OR B+Q>1,1,(B=0)*J);
> Hw:=HighestSince(1,M,H);
> Hw:=ValueWhen(1,J,If(J=1,Hw,ValueWhen(2,1,Hw)));
> Lw:=LowestSince(1,M,L);
> Lw:=ValueWhen(1,J,If(J=1,Lw,ValueWhen(2,1,Lw)));
> Cw:=ValueWhen(1,J,If(J=1,C,ValueWhen(2,1,C)));
> Ow:=ValueWhen(1,J,If(J=1,ValueWhen(1,M,O),
> ValueWhen(2,M OR Cum(1)=3,O)));
> Ow:=ValueWhen(1,Lw>0,Ow); {O}
> Hw:=ValueWhen(1,Lw>0,Hw); {H}
> Lw:=ValueWhen(1,Lw>0,Lw); {L}
> Cw:=ValueWhen(1,Lw>0,Cw); {C}
> {Ow;} Hw; Lw; Cw;
>
> Roy
>
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 9
> Date: Fri, 06 Feb 2004 21:35:26 -0000
> From: "lseldin" <larry@xxxxxxxxxx>
> Subject: Re: How to keep Optimization Variable from being optimized
>
> Pierre,
>
> Thanks much,
>
> - Larry
>
>
>
> ---------------------------------------------
>
> --- In Metastockusers@xxxxxxxxxxxxxxx, Pierre Tremblay <pt2000@xxxx>
>
> wrote:
> > Iseldin,
> >
> > minimum .10
> > maximum .10
> > step 1
> >
> > Pierre Tremblay
> >
> >
> >
> > lseldin a écrit:
> >
> > >In MetaStock 8, I created an Enhanced System Tester, I created a
> > >System Test with 3 Opt variables. At this point, I want to test
> each
> > >variable without changing the other ones.
> > >
> > >I know I can delete my code that references Opt1, however, I
> rather
> > >just adjust the System Editor, Optimizations screen.
> > >
> > >
> > >What I am looking for is something for Opt1 such as:
> > >
> > >minimum .10
> > >maximum .10
> > >step 0
> > >
> > >This does not work.
> > >
> > >Thanks much,
> > >
> > >larryTAKEOUT@xxxx
> > >
> > >
> > >
> > >
> > >
> > >Yahoo! Groups Links
> > >
> > >To visit your group on the web, go to:
> > > http://groups.yahoo.com/group/Metastockusers/
> > >
> > >To unsubscribe from this group, send an email to:
> > > Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
> > >
> > >Your use of Yahoo! Groups is subject to:
> > > http://docs.yahoo.com/info/terms/
> > >
> > >
> > >
> > >
> > >
> > >
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 10
> Date: Fri, 06 Feb 2004 21:25:38 -0500
> From: Philip Schmitz <pschmi02@xxxxxxxxxxx>
> Subject: Linking to Excel
>
> Greetings,
>
> I would like to link my exploration results to an excel spreadsheet.
> Can
> you tell me how to identify the result files and where they're kept?
>
> TIA,
> Philip Schmitz
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 11
> Date: Fri, 6 Feb 2004 21:39:40 EST
> From: JayTownsend@xxxxxxx
> Subject: Re: Linking to Excel
>
> <<Greetings,
>
> I would like to link my exploration results to an excel spreadsheet.
> Can
> you tell me how to identify the result files and where they're kept?
>
> TIA,
> Philip Schmitz>>
>
> I think you'll find that the MS file format is not compatible with
> anything
> else. What I do is select one line of the Exploration report, do a
> Ctrl C
> (copy), and paste it into Excel. By copying one line it in fact
> copies all lines
> of your report.
>
> Jay
>
>
> [This message contained attachments]
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
>
>
>
------------------------------------------------------------------------
> Yahoo! Groups Links
>
>
>
>
> -----------------------------------------------------------------------
>
> ________________________________________________________________
> The best thing to hit the Internet in years - Juno SpeedBand!
> Surf the Web up to FIVE TIMES FASTER!
> Only $14.95/ month - visit www.juno.com to sign up today!
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 4
> Date: Sat, 7 Feb 2004 12:56:39 -0600
> From: "ATTN: AFFILIATES WORLDWIDE" <prentice@xxxxxxxxxxxxxx>
> Subject: HOTTEST AFFILIATE Program on the net!
>
> The BIGGEST MARKETERS On The Net Are Quietly Positioning Themselves
> Right Now.
>
>
>
> http://www.prentice27.globalpowerline.com
>
> The Internet's Most Powerful WORLDWIDE Marketing System Has Just
> Launched! And Is Backed By A 5
> Year Old Rock-Solid Debt-Free Company, They Even Guarantee You To
> Receive A CHECK The Very First
> Week Of Joining.
> Take A FREE Test Drive And Discover Why This Turn-Key System Is
> Spreading Like WILDFIRE All Over
> The World Right Now!
>
> We Gave A Handful Of Them A Sneak Preview Of What's About To Be
> Unleashed And Gave Them Strict
> Instructions NOT TO TELL ANYONE.
> Guess What?
>
> We Noticed A Rash Of Activity The Next Day And Got To The Bottom Of
> It Quick.
> The Secret Is Out - But They Didn't Tell Everyone. So Now We're
> Telling You. Just To Give You A
> Shot At For Once Being In Front!
>
> What's The Secret?
>
> We Can't Release Any Specifics Yet, But We Can Say This:
>
> The #1 RATED Internet Marketing System Is About To Do Something No
> Other System Has Ever Done, And
> The "Insider Scoop" Was Juicy Enough To The Big Boys That They're
> All Jockeying For Position And
> Keeping It Hush Hush. You KNOW It's Gotta Be Something Huge!
>
> It's Going Public In Just A Few Days And If You Ever Wanted To Be A
> Part Of Something Instead Of
> Just Hearing About It Later, This Is Your Chance.
>
> In Case You Want To See It All Now, The Link Is Just Below.
>
> http://www.prentice27.globalpowerline.com
>
> Best Regards,
> Marty Sexton
>
> P.S. When You Take Action And View The Website Today, I'll Reserve
> And Hold You A Temp Position
> That Will Begin Accruing Traffic Underneath You Within Hours! Then
> You Can Have Some Breathing Room
> To Make A Decision That's Right For You Without Losing Anything.
>
> To Discontinue Receipt Of Future Mailings From Global Powerline Send
> A Blank email
> To webmaster@xxxxxxxxxxxxxx And Type Unsubscribe In The Subject Line
> Of The Email!
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 5
> Date: Sat, 7 Feb 2004 11:18:49 -0800
> From: "Bill Hebert" <billhebert@xxxxxxxxxxx>
> Subject: Re: Gann HiLo
>
> Thanks Henry,
>
> I have not done allot with Gann but this is a good way to
> have indicators that get me started,...
>
>
> ----- Original Message -----
> From: "Henry Z Kaczmarczyk" <henry1224@xxxxxxxxx>
> To: <Metastockusers@xxxxxxxxxxxxxxx>
> Sent: Saturday, February 07, 2004 8:14 AM
> Subject: [Metastockusers] Gann HiLo
>
>
> > this is the Gann Hi LO indicator
> >
> > HLd:=If(C>Ref(Mov(H,3,S),-1),1,
> > If(C<Ref(Mov(L,3,S),-1),-1,0));
> > HLv:=ValueWhen(1,HLd<>0,HLd);
> > HiLo:=If(HLv=-1,Mov(H,3,S),Mov(L,3,S));
> > HiLo;
> >
> > This is the Gann Swing Indicator
> >
> > {Market swing is defined as:
> > Up = 2 higher highs,
> > Down = 2 lower highs.}
> > Us:=BarsSince((H > Ref(H,-1)) AND (Ref(H,-1) >
> > Ref(H,-2)));
> > Ds:=BarsSince((L < Ref(L,-1)) AND (Ref(L,-1) <
> > Ref(L,-2)));
> > Sd1:=If(Us=0,
> > {then}If(Ref(L,-1)<>LowestSince(1,Ds=0,L),
> > {then}1,
> > {else}0),
> > {else}If(Ds=0,
> > {then}If(Ref(H,-1)<>
> > HighestSince(1,Us=0,H),
> > {then}-1,
> > {else}0),
> > {else}0));
> > Sd2:=If(Sd1=1,
> > {then} If(Ref(BarsSince(Sd1=1),-1) >
> > Ref(BarsSince(Sd1=-1),-1),
> > {then}1,
> > {else}0),
> > {else} If(Sd1=-1,
> > {then}If(Ref(BarsSince(Sd1=1),-1) <
> > Ref(BarsSince(Sd1=-1),-1),
> > {then}-1,
> > {else}0),
> > {else}0));
> > TD1:=ValueWhen(1,Sd2<>0,Sd2);
> > Td1;
> >
> > This is the Gann Trend Indicatot
> >
> > {Swing Direction}
> > Sd:= FmlVar("GANN-Swing","TD1") ;
> > {Swing Change High}
> > Sch:=If(Sd=1 AND Ref(sd,-1)=-1,
> > {then}1,
> > {else}0);
> > {Swing Change Low}
> > Scl:=If(Sd=-1 AND Ref(Sd,-1)=1,
> > {then}1,
> > {else}0);
> > {Peak Value}
> > Pv:=If(Scl=1,
> > {then}HighestSince(1,Sch=1,H),
> > {else}0);
> > {Trough Value}
> > Tv:=If(Sch=1,
> > {then}LowestSince(1,Scl=1,L),
> > {else}0);
> > {Trend Direction}
> > Td:=If(H>ValueWhen(1,Pv>0,Pv),
> > {then}1,
> > {else}If(L<ValueWhen(1,Tv>0,Tv),
> > {then}-1,
> > {else}0));
> > {UpTrend=1 DownTrend =-1}
> > Tdv:=ValueWhen(1,Td<>0,Td);
> > Tdv;
> >
> >
> >
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 6
> Date: Sun, 8 Feb 2004 20:18:31 +1100
> From: "Russell Allen" <russall@xxxxxxxxxxxxxx>
> Subject: Fw: MS "Index is damaged"
>
>
> Hi,
>
> I'm a new member and wondering if someone can help me.
>
> Whenever I try to access one of my files, (in this case "R") and
> attempt to open a new chart I get a blank screen with no entries,
> and when I try to open a current chart from the R file I get the
> notification "index damaged".
>
> The file is still there as other charting programmes I use can
> access the file OK, so it appears to be an problem that only applies
> with MS.
>
> Any suggestions as to how to "repair" the index?
>
> thanks
>
> Dax
>
>
>
> [This message contained attachments]
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 7
> Date: Sun, 8 Feb 2004 15:14:59 +0530
> From: "Dusant@xxxxxxxxxxxxxxxxxx" <dusant@xxxxxxxxxxxxxxxxxx>
> Subject: Re: MS "Index is damaged"
>
> Dax
> The Downloader can help you in this respect. There is a provision
> under \Tools\Test which can pinpoint exactly what is the problem.
> I did face a problem like this, and just used Downloader to copy all
> the files into a new folder. The I did a data sort etc, which are
> normal "clean up" activities. It solved my problem.
> Dusant
> Chief Architect
> www.candlestrength.com
> ----- Original Message -----
> From: Russell Allen
> To: Metastockusers@xxxxxxxxxxxxxxx
> Sent: Sunday, February 08, 2004 14:48 PM
> Subject: [Metastockusers] Fw: MS "Index is damaged"
>
>
>
> Hi,
>
> I'm a new member and wondering if someone can help me.
>
> Whenever I try to access one of my files, (in this case "R") and
> attempt to open a new chart I get a blank screen with no entries,
> and when I try to open a current chart from the R file I get the
> notification "index damaged".
>
> The file is still there as other charting programmes I use can
> access the file OK, so it appears to be an problem that only applies
> with MS.
>
> Any suggestions as to how to "repair" the index?
>
> thanks
>
> Dax
>
>
> [This message contained attachments]
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 8
> Date: Sun, 08 Feb 2004 01:55:31 -0800
> From: Dan C <dan.danc@xxxxxxxxxxxxx>
> Subject: Heikin-Ashi
>
>
>
> [This message is not in displayable format]
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
> Message: 9
> Date: Sun, 8 Feb 2004 16:43:09 +0530
> From: "Dusant@xxxxxxxxxxxxxxxxxx" <dusant@xxxxxxxxxxxxxxxxxx>
> Subject: Re: Heikin-Ashi
>
> Dan
> It is not possible to write that code is Metastock to display the
> Candles as required by the author.
> However, the simulated OHLC can be plotted as lines. So can the
> indicators.
> This matter has been discussed at length last week. I suggest an
> archive search, and you will find what you are looking for.
> Dusant
> Chief Architect
> www.candlestrength.com
> ----- Original Message -----
> From: Dan C
> To: Metastockusers@xxxxxxxxxxxxxxx
> Sent: Sunday, February 08, 2004 15:25 PM
> Subject: [Metastockusers] Heikin-Ashi
>
>
> In Technical Analysis of Stocks & Commodities, February 2004,
> Dan Valcu described a calculated variance of the candlestick
> charting method.
> Has anyone been able to write code to chart this technique in
> Metastock?
> If so, would you share it?
>
> Regards,
> Dan
>
>
>
> [This message contained attachments]
>
>
>
>
________________________________________________________________________
>
________________________________________________________________________
>
>
>
>
------------------------------------------------------------------------
> Yahoo! Groups Links
>
>
>
>
>
------------------------------------------------------------------------
>
>
>
________________________________________________________________
The best thing to hit the Internet in years - Juno SpeedBand!
Surf the Web up to FIVE TIMES FASTER!
Only $14.95/ month - visit www.juno.com to sign up today!
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/zMEolB/TM
---------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
<*> To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|