Những series bài hay về phần mềm phân tích kỹ thuật AmiBroker
  • Thông báo


    Kết quả 1 đến 20 của 38

    Threaded View

    1. #29
      Ngày tham gia
      Oct 2003
      Bài viết
      365
      Được cám ơn 215 lần trong 148 bài gởi

      Mặc định Những series bài hay về phần mềm PTKT phân tích kỹ thuật AmiBroker

      Đây là loạt bài AmiBroker AFL Library về phần mềm phân tích kỹ thuật PTKT AmiBroker

      Details:

      Formula name: 30 Week Hi Indicator - Calculate
      Author/Uploader: Geoff Mulhall - geoffmulhall [at] optusnet.com.au
      Date/Time added: 2003-05-03 22:12:35
      Origin:
      Keywords: 30 Week High
      Level: semi-advanced
      Flags: exploration,indicator
      DISCLAIMER: Most formulas present in AFL on-line library are submitted by the users and are provided here on an "as is" and "as available" basis. AmiBroker.com makes no representations or warranties of any kind to the contents or the operation of material presented here. We do not maintain nor provide technical support for 3rd party formulas.

      Description:

      Just as the advance decline line gives an indication of the overall strength of the market, so does the number or stocks makeing new 30 week high's. Refer Weinstein's "The Secret of Profiting in Bull and Bear Markets".

      The attached scan ( _s.afl file) calculates two indices. The first index calculates the number of stocks making new 30 week highs based on the high of each stock. The second index calculates the number of stocks making new 30 week high's - but calculated from the weekly close of each stock. You'll find there is little difference between the two.

      The scan must be run first as it uses the AddToComposite function to create the two indices. It must be run over an entire market.

      The indicator can then be plotted. Note that the scan is run against weekly data and therefore it only makes sense to display the results on a weekly chart.



      Formula:

      /* Calculate indices of new 30 week high's vs new 30 week lows */
      /* Set the filter so as to scan a given market */
      /* Set Period to Weekly */
      /* The new indexes will be found in Group 253 */

      H1 = Close > Ref(HHV(Close,30),-1);
      H2 = High > Ref(HHV(High,30),-1);

      L1 = Close < Ref(LLV(Close,30),-1);
      L2 = Low < Ref(LLV(Low,30),-1);

      H_L_Array1 = H1 - L1;
      H_L_Array2 = H2 - L2;

      // Do not generate signals

      Buy = 0;
      Filter = 0;

      AddToComposite( H_L_Array1, "~Idx30Wk_Close_HL", "X", 19);
      AddToComposite( H_L_Array2, "~Idx30Wk_Abs_HL", "X", 19);
      Cuộc đời tàn nhẫn nuôi anh lớn
      Xã hội khốn nạn dạy anh khôn

    2. Có 2 thành viên đã cám ơn 1nightdream :
      tigeran (10-08-2013), tradingpro8x (12-08-2013)

    Thông tin của chủ đề

    Users Browsing this Thread

    Có 1 thành viên đang xem chủ đề này. (0 thành viên và 1 khách vãng lai)

       

    Similar Threads

    1. Một bài phân tích hay, có lý và khách quan
      By Brainstorm in forum Thảo luận Tình hình
      Trả lời: 0
      Bài viết cuối: 17-06-2012, 11:41 PM
    2. Phần mềm phân tích kỹ thuật
      By waterloo1815 in forum CLB Chứng khoán
      Trả lời: 2
      Bài viết cuối: 28-10-2009, 11:32 PM

    Bookmarks

    Quyền viết bài

    • Bạn Không thể gửi Chủ đề mới
    • Bạn Không thể Gửi trả lời
    • Bạn Không thể Gửi file đính kèm
    • Bạn Không thể Sửa bài viết của mình