[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [amibroker] Re: MACD divergences



PureBytes Links

Trading Reference Links




More 
MACD Delta info - positive side
<FONT face=Arial color=#0000ff 
size=2> 
<A 
href="">http://www.wallstreetcity.com/commentary/Prosearch_full_story.asp?CommentaryID=17095
<FONT face=Arial color=#0000ff 
size=2> 
Put 
side
<FONT face=Arial color=#0000ff 
size=2> 
<A 
href="">http://www.wallstreetcity.com/commentary/Prosearch_full_story.asp?CommentaryID=17105
<FONT face=Arial color=#0000ff 
size=2> 
Mr 
Valley

  <FONT face=Tahoma 
  size=2>-----Original Message-----From: Anthony Faragasso 
  [mailto:ajf1111@xxxxxxxx]Sent: Friday, July 11, 2003 1:45 
  PMTo: amibroker@xxxxxxxxxxxxxxxSubject: Re: [amibroker] 
  Re: MACD divergences
  How do you calculate the Delta ?
   
  Anthony
  <BLOCKQUOTE 
  >
    ----- Original Message ----- 
    <DIV 
    >From: 
    Mr 
    Valley 
    To: <A title=amibroker@xxxxxxxxxxxxxxx 
    href="">amibroker@xxxxxxxxxxxxxxx 
    Sent: Friday, July 11, 2003 2:36 
    PM
    Subject: RE: [amibroker] Re: MACD 
    divergences
    
    <FONT face=Arial color=#0000ff 
    size=2>DT,
    <FONT face=Arial color=#0000ff 
    size=2> 
    <FONT face=Arial color=#0000ff 
    size=2>Examples Daily or Intraday...
    <FONT face=Arial color=#0000ff 
    size=2> 
    
    
      
      
        Moving Average 
          Convergence/Divergence (MACD)
      
        Criteria
        Value 
      
        <IMG height=0 
          src="" width=1 
          border=0 NOSEND="1">
      
        MACD 8-17-9 Day Breakout
        9.0
      
        MACD 8-17-9 Day Value
        19.0
      
        MACD 8-17-9 Day HST
        32.0
      
        MACD 8-17-9 Day Delta
        -7.0
      
        MACD 12-25-9 Day Breakout
        7.0
      
        MACD 12-25-9 Day Value
        17.0
      
        MACD 12-25-9 Day HST
        26.0
      
        MACD 12-25-9 Day Delta
        -1.0
      
        MACD 8-17-9 Week Breakout
        -10.0
      
        MACD 8-17-9 Week Value
        178.0
      
        MACD 8-17-9 Week Change
        -12.0
      
        MACD 8-17-9 Week Delta
        -3
     
    Mr 
    Valley
    
      <FONT face=Tahoma 
      size=2>-----Original Message-----From: DIMITRIS TSOKAKIS 
      [mailto:TSOKAKIS@xxxxxxxxx]Sent: Friday, July 11, 2003 5:25 
      AMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker] 
      Re: MACD divergencesWhat is the /MACD Delta % / 
      ?DT--- In amibroker@xxxxxxxxxxxxxxx, "Mr Valley" 
      <valleymj@xxxx> wrote:> DT,> > Have you coded 
      the MACD Delta % on the divergence?> > Mr 
      Valley>   -----Original Message----->   
      From: DIMITRIS TSOKAKIS [mailto:TSOKAKIS@xxxx]>   Sent: 
      Friday, July 11, 2003 2:53 AM>   To: 
      amibroker@xxxxxxxxxxxxxxx>   Subject: [amibroker] Re: 
      MACD divergences> > >   
      Steve,>   the MACD() divergence is an alternative of the 
      Stochastic divergence>   in the AFL 
      Library.>   The advantage is that no peak()/trough() 
      functions are used, which>   would not operate properly 
      with the negative MACD() values.>   The formula is for 
      IB, AA or commentary window.> >   
      ST33=MACD();bars=100;d=5;>   
      TR1=LLVBars(ST33,d);>   COND1=TR1>0 AND Ref(TR1,-1)==0 
      AND Ref(ST33,-1)<0;>   
      TR2=IIf(COND1,Ref(ST33,-1),0);>   
      Plot(st33,"MACD",1,8);>   
      M1=ValueWhen(COND1,ST33);>   
      P1=ValueWhen(COND1,LLV(L,3));>   
      DM1=M1-Ref(M1,-1);DP1=P1-Ref(P1,-1);>   
      DT=Ref(BarsSince(COND1),-1);>   POSDIV=DM1>0 AND 
      DP1<0 AND DT<BARS;Plot(POSDIV*LastValue(Lowest>   
      (ST33)),"",5,2);> >   
      TR11=HHVBars(ST33,d);>   COND11=TR11>0 AND 
      Ref(TR11,-1)==0 AND Ref(ST33,-1)>0;>   
      TR21=IIf(COND11,Ref(ST33,-1),0);>   
      M11=ValueWhen(COND11,ST33);>   
      P11=ValueWhen(COND11,HHV(H,3));>   
      DM11=M11-Ref(M11,-1);DP11=P11-Ref(P11,-1);>   
      DT1=Ref(BarsSince(COND11),-1);>   NEGDIV=DM11<0 AND 
      DP11>0 AND 
      DT1<BARS;Plot(NEGDIV*LastValue(Highest>   
      (ST33)),"",4,2);>   GraphXSpace=5;>   
      Filter=NEGDIV OR POSDIV;>   AddColumn(NEGDIV,"BEARISH 
      DIVERGENCE");>   AddColumn(POSDIV,"BULLISH 
      DIVERGENCE");>   Sell=NEGDIV;>   
      Buy=POSDIV;> >   Just one final note : Buy/Sell 
      are included for the arrows, it is not>   an 
      independent complete trading system. It is not also a>   
      recommendation to buy/sell, I just use it frequently and, 
      sometimes,>   I found unique 
      solutions.>   It may be also combined with Stochastic 
      divergences. When we see>   both, it is more 
      reliable...>   Thank you for your 
      reply>   Dimitris Tsokakis>   --- In 
      amibroker@xxxxxxxxxxxxxxx, "steve_almond" <steve2@xxxx> 
      wrote:>   > Dimitris,>   
      >>   > Impressive signals shown in your Gif. Can 
      you be more specific>   about the system which gave you 
      the signals?>   >>   > 
      Thanks,>   >>   > 
      Steve>   >>   > >----- Original 
      Message ----->   > >From: "Dimitris Tsokakis" 
      <TSOKAKIS@xxxx>>   > >To: Yahoo: 
      amibroker@xxxxxxxxxxxxxxx>   > >Sent:  Fri Jul 
      11, 2003 8:53 am>   > >Subject: MACD 
      divergences>   > >>   > >may 
      give some ideas for ^VLIC [quite accurate the last 2 
      years],>   AMZN[no other important sell signal since 
      July2002 !!], WU03 [or how>   can you 
      loose>   > >20 units in one single bar] or GCZ03 
      [the lack of the proper sell>   signal may force you 
      waiting and waiting and loose the trend for a>   break 
      even].>   > >Dimitris Tsokakis>   
      > >>   > >>   > 
      >Attachment>   > >>   > 
      >1DIV.gif>   > >Type: 
      image/gif>   > >Size: 64k 
      Download>   >>   > 
      _____________________________________________________________>   
      > Sent by OnBoards: a bulletin board browser>   > 
      Free at <A 
      href="">http://www.automatedenterprises.com> 
      > >         Yahoo! 
      Groups 
      Sponsor>               
      ADVERTISEMENT> > > > >   Send 
      BUG REPORTS to bugs@xxxx>   Send SUGGESTIONS to 
      suggest@xxxx>   
      ----------------------------------------->   Post 
      AmiQuote-related messages ONLY to: 
      amiquote@xxxxxxxxxxxxxxx>   (Web page: <A 
      href="">http://groups.yahoo.com/group/amiquote/messages/)>   
      -------------------------------------------->   Check 
      group FAQ at:> <A 
      href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html> 
      >   Your use of Yahoo! Groups is subject to the Yahoo! 
      Terms of Service.Send BUG REPORTS to 
      bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
      suggest@xxxxxxxxxxxxx-----------------------------------------Post 
      AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: 
      <A 
      href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
      group FAQ at: <A 
      href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
      Your use of Yahoo! Groups is subject to the <A 
      href="">Yahoo! Terms of Service. 
      
    Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
    suggest@xxxxxxxxxxxxx-----------------------------------------Post 
    AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: 
    <A 
    href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
    group FAQ at: <A 
    href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
    Your use of Yahoo! Groups is subject to the <A 
    href="">Yahoo! Terms of Service. 
    
  <BLOCKQUOTE 
  ><FONT 
    face="Courier New">---Outgoing mail is certified Virus 
    Free.Checked by AVG anti-virus system (<A 
    href="">http://www.grisoft.com).Version: 
    6.0.498 / Virus Database: 297 - Release Date: 7/8/2003Send 
  BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to 
  suggest@xxxxxxxxxxxxx-----------------------------------------Post 
  AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
  href="">http://groups.yahoo.com/group/amiquote/messages/)--------------------------------------------Check 
  group FAQ at: <A 
  href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
  Your use of Yahoo! Groups is subject to the <A 
  href="">Yahoo! Terms of Service. 







Yahoo! Groups Sponsor


  ADVERTISEMENT 









Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html



Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.