สูตรscanโดยใช้ Stochastic RSI ที่มีลูกศร

Home Forums CDC Forums Supporting Members Area — รวบรวมสูตร Downloads และระบบการเทรด สูตรscanโดยใช้ Stochastic RSI ที่มีลูกศร

Viewing 2 reply threads
  • Author
    Posts
    • #41068
      TW
      Participant

      รบกวนขอสูตรที่ใช้scanโดยใช้ Stochastic RSI ที่มีลูกศร(arrows)ให้ขายณ.วันที่ K ตัดลงต่ำกว่า D เหนือเส้น 80 และมีลูกศร(arrows)ให้ซื้อณ.วันที่ K ตัดขึ้นเหนือ D ใต้เส้น 20 เพือใช้กับฟังชั่นการscanของ Amibroker ครับ

      ขอบคุณครับ

    • #41115
      dreamscat
      Keymaster

      ขออภัยอย่างสูงที่ล่าช้าครับ

      StoD = StochD(14,3,3);
      StoK = StochK(14,3);
      
      Buy = Cross(StoK,StoD) AND StoK < 20;
      Sell = Cross(StoD,StoK) AND StoK > 80;
      
      // Plot
      _SECTION_BEGIN("Price");
      SetChartOptions(0,chartShowArrows|chartShowDates);
      _N(Title = StrFormat("{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ));
      Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() ); 
      PlotShapes(Buy*shapeUpArrow,colorGreen,0,L);
      PlotShapes(Sell*shapedownArrow,colorred,0,H);
      _SECTION_END();
      
      // Explorer
      Filter = 1;
      AddColumn(Sell,"Sell",1.0,colorDefault,colorDefault,35);
      AddColumn(Buy,"Buy",1.0,colorDefault,colorDefault,35);
      
      

    • #41558
      TW
      Participant

      ขอสูคร CDC actionของ amibroker ที่ไม่ได้เป็น zip file ด้วยครับ เพราะสูตรเดิมที่เคยได้มามันเป็นเส้นema 12 กับ 26 ไม่เป๋น ริบบิ้นแดงเขียวครับ

      • #41563
        dreamscat
        Keymaster

        สูตร CDC ActionZone สำหรับโปรแกรม Amibroker สามารถดาวน์โหลดได้จากลิ้งค์นี้ครับท่าน
        https://bit.ly/3fTBr36
        ตัวอย่างวิธีการนำสูตรเข้า Amibroker เป็นดังนี้ครับ

        • This reply was modified 2 years, 6 months ago by dreamscat.
Viewing 2 reply threads
  • You must be logged in to reply to this topic.