النتائج 16 إلى 30 من 34
- 08-08-2009, 03:06 PM #16
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
- 08-08-2009, 03:55 PM #17
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
شكرا وجزاكم الله كل الخير
- 08-08-2009, 04:38 PM #18
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
Test it
- 08-08-2009, 06:26 PM #19
- 08-08-2009, 09:29 PM #20
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
شباب اسف وهذا المؤشر
http://www.mediafire.com/?enxnh2jntmt
- 08-08-2009, 09:40 PM #21
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
للمبرمجين : هذه المعادلة
_SECTION_BEGIN("Zig Zag Indicator with Valid Entry and Exit Points");
//------------------------------------------------------------------------------
//
// Formula Name: Zig Zag Indicator with Valid Entry and Exit Points
// Author/Uploader: Eric Tangen
// E-mail:
// Date/Time Added: 2004-04-21 21:37:30
// Origin: self
// Keywords: Zig Zag, Pivot Points, Pivot High, Pivot Low
// Level: basic
// Flags: indicator
// Formula URL: http://www.amibroker.com/library/formula.php?id=353
// Details URL: http://www.amibroker.com/library/detail.php?id=353
//
//------------------------------------------------------------------------------
//
// The Zig Zag indicator identifies pivot points but looks into the future -
// (beyond the right edge of the chart) to do this. This indicator plots a dot
// at the pivot point and an arrow at the bar when the pivot becomes known.
// The price bars are colored red for a pivot downtrend, green for a pivot
// uptrend, and blue at the known pivot point. Three addional horizontal lines
// are plotted and tied to the selected bar - the current close and +/- x%
// from the current close. The x% is the same % used in the Zig Zag function.
//
//------------------------------------------------------------------------------
//z_ZigZagValid
// ******** CHARTING
PercentChange = 6;
mystartbar = SelectedValue(BarIndex()); // FOR GRAPHING
mystartbardate = LastValue(ValueWhen(mystartbar == BarIndex(), DateNum(),1));
InitialValue = LastValue(ValueWhen(mystartbardate == DateNum(), C , 1 ) ) ;
Temp1 = IIf(BarIndex() >= mystartbar, InitialValue, Null) ;
Plot(Temp1, " ", colorBlack,styleLine);
Plot((1+(LastValue(PercentChange)/100))*(Temp1), " ", colorGreen, styleLine) ;
Plot((1-(LastValue(PercentChange)/100))*(Temp1), " ", colorRed, styleLine) ;
ZZ = Zig(C,LastValue(PercentChange)) ;
PivotLow = Ref(IIf(Ref(ROC(ZZ,1),-1) < 0 AND ROC(ZZ,1) > 0, 1, Null),1);
PivotHigh = Ref(IIf(Ref(ROC(ZZ,1),-1) > 0 AND ROC(ZZ,1) < 0, 1, Null),1);
PlotShapes( shapeCircle*PivotLow, colorGreen,0, L, -20) ;
PlotShapes( shapeCircle*PivotHigh,colorRed,0,H, 20) ;
Buy_Valid = IIf(C>(1+(LastValue(PercentChange)/100))*(ValueWhen(PivotLow, C, 1))
AND ROC(ZZ,1) > 0,1,0);
Sell_Valid = IIf(C<(1-(LastValue(PercentChange)/100))*(ValueWhen(PivotHigh, C, 1))
AND ROC(ZZ,1) < 0,1,0);
Buy_Valid = ExRem(Buy_Valid,Sell_Valid);
Sell_Valid = ExRem(Sell_Valid,Buy_Valid);
PlotShapes( shapeUpArrow*Buy_Valid, colorGreen,0, L, -20);
PlotShapes( shapeDownArrow*Sell_Valid, colorRed,0,H, -20) ;
BarColors =
IIf(BarsSince(Buy_Valid) < BarsSince(Sell_Valid)
AND BarsSince(Buy_Valid)!=0, colorGreen,
IIf(BarsSince(Sell_Valid) < BarsSince(Buy_Valid)
AND BarsSince(Sell_Valid)!=0, colorRed, colorBlue));
Plot(C, " ", BarColors, styleBar ) ;
Plot(ZZ," ", colorLightGrey,styleLine|styleThick);
Plot(ZZ," ", BarColors,styleDots|styleNoLine);
Title = Name() + " " + Date() + WriteIf(PivotLow, " Up Pivot ","")+WriteIf(PivotHigh," Down Pivot ","")+ WriteIf(Buy_Valid, " Buy Point ", "") + WriteIf(Sell_Valid, " Sell Point ", "") ;
_SECTION_END();
- 08-08-2009, 09:48 PM #22
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
شباب شوفو الصورة الي في بداية الموضوع كانت لسهم سابك السعودي
واعطانا اشارت تأكيد دخول وشفو هذي الصور دليل انو السهم ارتفع بعد علامة التأكيد
لاعاد رسمه ولاشئ
- 08-08-2009, 10:40 PM #23
- 08-08-2009, 11:10 PM #24
- 08-08-2009, 11:57 PM #25
- 09-08-2009, 12:59 AM #26
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
الزقزاق العادي يعتمد على دالة لوغارتيمية ولا يعتمد عليه أبدا كمؤشر منفرد .. ولكنه يعتبر مساعد في إتخاذ القرار بوجود مؤشرات أخرى .... ويستخدم للتنبؤ بقرب إنتهاء موجة الصعود أو الهبوط فقط.
لكن المؤشر اللي وضعه أخونا هنا لا أعلم عنه شيء ... ولذلك أحببت أن اعرف منه شخصياً عن هذا المؤشر بحكم تجربته له
- 09-08-2009, 01:27 AM #27
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
اعتقد ان هذا المؤشر قريب لما تبحث عنه وسوف يساعدك ايضا المؤشر الثانى على تاكيد الدخول مع الترند العام
والتوفيق ان شاء الله
- 09-08-2009, 02:43 PM #28
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
أخي elnishwy هل المؤشر الذي أرفقته يحقق المعادلة الذي قدمها صاحب الموضوع ؟
- 09-08-2009, 03:12 PM #29
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
والله يا اخى مااعرف لانى ليس لى خبره بالبرمجه
- 09-08-2009, 07:40 PM #30
رد: مالك الا Zig Zag Indicator with Valid Entry and Exit Point
مفيش حد خبير يساعدنا في عمل المؤشر ده
المواضيع المتشابهه
-
مطلوب Winning Strategies for Timing Entry & Exit Moves
By code 606 in forum استفسارات وأسئلة المبتدئينمشاركات: 4آخر مشاركة: 03-06-2010, 02:56 AM -
طلب من الخبراء : مؤشر Delphi scalper indicator & FXSmooth Indicator
By MoaidFX in forum برمجة المؤشرات واكسبرتات التداول - Experts Advisor EAمشاركات: 7آخر مشاركة: 13-04-2010, 02:48 AM -
entry limit و entry stop
By othman in forum استفسارات وأسئلة المبتدئينمشاركات: 5آخر مشاركة: 28-05-2005, 12:38 AM -
entry limit و entry stop
By othman in forum سوق تداول العملات الأجنبية والسلع والنفط والمعادنمشاركات: 5آخر مشاركة: 28-05-2005, 12:38 AM