Home › Forums › CDC Forums › General Discussion — The Living Room › indicator CDC action zone V2
- This topic has 7 replies, 2 voices, and was last updated 4 years, 5 months ago by TW.
-
AuthorPosts
-
-
22/04/2020 at 1:09 pm #35699TWParticipant
รบกวนขอdownload indicator “CDC action zone v2″ที่มีในTrading view ทีใช้สำหรับ Amibrokerด้วยครับ
ขอบคุณครับ -
22/04/2020 at 3:06 pm #35700dreamscatKeymaster
ยังไม่ได้แปลงให้เลยครับ ขอเวลาแปลงสักครู่นะครับท่าน
-
22/04/2020 at 10:09 pm #35703dreamscatKeymaster
การใช้โปรแกรม AMIBROKER เบื้องต้น Part 6.5 (การนำ SYSTEM ทีมีอยู่แล้วมาใส่ใน AMIBROKER) โดยอาจารย์พิริยะ ครับ
// CDC ActionZone V2 29 Sep 2016 // CDC ActionZone is based on a simple 2MA and is most suitable for use with medium volatility market // 11 Nov 2016 : Ported to Trading View with minor UI enhancement // from TradingView by Aj Piriya33 + convert to Amibroker by Dreamscat src = (O+H+L+C)/4; prd1 = 12; prd2 = 26; AP = ema(src,2); Fast = ema(AP,prd1); Slow = ema(AP,prd2); Bullish = Fast>Slow; Bearish = Fast<Slow; Green = Bullish and AP>Fast; Red = Bearish and AP<Fast; Yellow = Bullish and AP<Fast; Blue = Bearish and AP>Fast; Buy = Bullish and Ref(Bearish,-1); Sell = Bearish and Ref(Bullish,-1); //Plot Plot(Fast,"Fast",colorRed); Plot(Slow,"Slow",colorBlue,styleThick); BarColor = IIf(Green,colorLime,IIf(Red,colorRed,IIf(yellow,colorYellow,IIf(blue,colorlightBlue,colorWhite)))); CloudColor = IIf(Green,colordarkgreen,IIf(Red,colordarkRed,IIf(yellow,colordarkYellow,IIf(blue,colordarkBlue,colorGrey50)))); Plot(C,"Price",BarColor,styleCandle); PlotOHLC(Fast,Fast,Slow,Slow,"",CloudColor,styleCloud);
-
23/04/2020 at 9:12 am #35712TWParticipant
ตามกราฟCDC action zone V2 จะมีแถบริบบิ้นสีที่ฐานด้านล่างกราฟว่ถ้าแดงขายและเขียวซื้อตามที่คุณลุงเคยเปิดให้ดูครับ แต่สูตรตามอีเมล์นี้ไม่มีแถบสีแสดงครับ รบกวนช่วยพิจารณาสูตรเพื่อโชว์แถบสีให้ด้วยครับ
ขอบคุณครับ-
23/04/2020 at 1:00 pm #35713dreamscatKeymaster
ขออนุญาตดัดแปลงให้สีของ cloud เป็นสีเหมือนแถบริบบิ้นใน metastock แทนนะครับ เนื่องจากเขียนสูตรแสดงแถบริบบิ้นเหมือนใน metastock บน amibroker ไม่เป็นครับ (ดังนั้นสูตรนี้สีของ cloud จะไม่เหมือนกับสูตรใน tradingview แบบดั้งเดิมนะครับ)
// CDC ActionZone V2 29 Sep 2016 // CDC ActionZone is based on a simple 2MA and is most suitable for use with medium volatility market // 11 Nov 2016 : Ported to Trading View with minor UI enhancement // from TradingView by Aj Piriya33 + convert to Amibroker by Dreamscat (V2.1 cloud color = Fast & Slow) - not original !!! src = (O+H+L+C)/4; prd1 = 12; prd2 = 26; AP = ema(src,2); Fast = ema(AP,prd1); Slow = ema(AP,prd2); Bullish = Fast>Slow; Bearish = Fast<Slow; Green = Bullish and AP>Fast; Red = Bearish and AP<Fast; Yellow = Bullish and AP<Fast; Blue = Bearish and AP>Fast; Buy = Bullish and Ref(Bearish,-1); Sell = Bearish and Ref(Bullish,-1); //Plot Plot(Fast,"Fast",colorRed); Plot(Slow,"Slow",colorBlue,styleThick); BarColor = IIf(Green,colorLime,IIf(Red,colorRed,IIf(yellow,colorYellow,IIf(blue,colorlightBlue,colorWhite)))); CloudColor = IIf(Bullish,colordarkgreen,IIf(Bearish,colordarkRed,colorGrey50)); Plot(C,"Price",BarColor,styleCandle); PlotOHLC(Fast,Fast,Slow,Slow,"",CloudColor,styleCloud);
- This reply was modified 4 years, 5 months ago by dreamscat.
-
-
25/04/2020 at 4:21 pm #35728TWParticipant
กรณีแท่งเทียนเป็นสีแดงและแถบพื้นที่เป็นสีแดงเป็นช่วงขายและกรณีสีเขียวเป็นช่วงซื้อ ในส่วนที่แท่งเทียนเป็นสีน้ำเงินและแถบเป็นสีเท่านั้นเป็นช่วยให้รอสัญญาโดยไม่ซื้อหรือขายใช่ไหมครับ
ขอบคุณครับ -
29/04/2020 at 11:05 am #35759TWParticipant
กรณีแท่งเทียนเป็นสีน้ำเงินหรือสีเหลือความหมายคือเป็นช่วยให้รอสัญญาโดยไม่ซื้อหรือขายใช่ไหมครับ
ขอบคุณครับ -
29/04/2020 at 11:07 am #35760TWParticipant
กรณีแท่งเทียนเป็นสีน้ำเงินหรือสีเหลือความหมายคือเป็นช่วยให้รอสัญญาโดยไม่ซื้อหรือขายใช่ไหมครับ ขอความรู้ด้วยครับ
ขอบคุณครับ
-
-
AuthorPosts
- You must be logged in to reply to this topic.