النتائج 16 إلى 30 من 39
- 21-04-2013, 03:22 PM #16
هل يعطي المؤشر تنبيه إذا اكتملت فرصة على زوج معين ؟
- 21-04-2013, 04:36 PM #17
اخي فهد فكرة العمل على المستطيل BreakOutBox قديمة ومعروفة ويجد لها كثير من الأكسبيرتات ، لو بحثت في النت ستجد عدد منها ، كذلك المهندس اسامة والمهندسين وضاح عطار ومحمود عامر لهم اكسبيرتات لنفس الفكرة ، ومؤشرات البريك بوكس كذلك عديدة .
- 21-04-2013, 10:29 PM #18
اذا تقدر تخدمنا اخوي جميل في هاذا المؤشر فياريت
- 21-04-2013, 10:31 PM #19
نعم يعطي تنبية صوتي
- 21-04-2013, 10:54 PM #20
حاولت افهم المؤشر وأصل الى كود سهم البيع وسهم الشراء وما أستطعت فأذا احد الأخوان الفاهمين في كود المؤشرات يساعد في هذه النقطة سأبرمج لك الأكسبيرت . لكن هل بحثت عن الأكسبيرتات التي اخبرتك ؟؟ فهي افضل منه من حيث اختيار الفريم .
- 21-04-2013, 11:06 PM #21
شكرا لك اخي جميل على المحاوله
مازلت ابحث واذا لديك روابط لمواضيعها تسهل على الكثير
واتمنى ياتي احد المبرمجين ويصل الى الاكواد
- 21-04-2013, 11:26 PM #22
- 21-04-2013, 11:41 PM #23
شكرا على تعاونك استاذ جميل وسرعة استجابتك
بمراجعة المؤشرات والاكسبيرتات في المواضيع السابقه
وجدت ان المؤشر الذي ارفقته فرصه اكثر ومضاعفاته اقل
وهاذا يسهل كثيرا على من لديه راس ما قليل
اتمنى ان يتوصل المبرمجين لتفسير هاذا المؤشر المعقد وعمل الاكسبيرت
- 22-04-2013, 12:40 PM #24
ليس لي خبره في امور البرمجه لكن اعتقد انه هذا الجزء و الله اعلم
- 22-04-2013, 12:41 PM #25
// Trading Signal Alerts: a minimum number of bars should have closed outside of the BO area
// MinBarsClosedOutsideBO set to 0 means we can start the sequence as soon as the breakout occurs
if (MinBarsClosedOutsideBO==0) {
// special case: we want to trigger the trade as soon as price break out of the CZ Box
if (Close[t8+1]<=highBOcont[t8] && High[t8]>highBOcont[t8]) {trigger_direction=OP_BUY; trigger_price=highBOcont[t8]+Point;}
if (Close[t8+1]>=lowBOcont[t8] && Low[t8]<lowBOcont[t8]) {trigger_direction=OP_SELL; trigger_price=lowBOcont[t8]+Point;}
}
if (MinBarsClosedOutsideBO>=1) {ArrayCopySeries(d,MODE_CLOSE,Symbol(),TF[0]); d1=iClose(Symbol(),TF[0],t8+MinBarsClosedOutsideBO+1);
Temp[0][1]=d[ArrayMinimum(d,MinBarsClosedOutsideBO,t8+1)]; Temp[0][2]=d[ArrayMaximum(d,MinBarsClosedOutsideBO,t8+1)];
Temp[0][3]=highBOcont[t8]; Temp[0][4]=lowBOcont[t8]; t4=0; t1=1; while (t1<=2 && t4==0) {t5=(3-t1*2);
t4=(t5*(Temp[0][t1]-Temp[0][t1+2])>0 && t5*(Temp[0][t1+2]-d1)>=0 && d1>0 && Temp[0][t1]>0 && Temp[0][t1+2]>0)*t1; t1++;}
if (t4==1) {trigger_direction=OP_BUY; trigger_price=Open[t8];} if (t4==2) {trigger_direction=OP_SELL; trigger_price=Open[t8];}
}
if (trigger_direction==OP_BUY && LongTrades && (InitialBreakoutDirection==OP_BUY || !InitialBreakoutDirectionOnly || _box_total_trades==0))
{BuySignal[t8]=trigger_price; // make the arrow point to the trade open price
last_trigger_direction=OP_BUY;
_box_curr_trade=Time[t8];
_box_curr_trade_dir=OP_BUY;
_box_total_trades+=1; if (_box_total_trades==1) {InitialBreakoutDirection=OP_BUY;}
num_total_longs+=1; s1=StringConcatenate(prefix,"BUY",TimeToStr(Time[t8]));
drawOrderArrow(s1,Time[t8],trigger_price,BuySignalArrowCode,BuySignalArrowCo lor, 2);
if (t8==0) {send_trading_signal(OP_BUY,Ask);}}
if (trigger_direction==OP_SELL && ShortTrades && (InitialBreakoutDirection==OP_SELL || !InitialBreakoutDirectionOnly || _box_total_trades==0))
{SellSignal[t8] = trigger_price; // make the arrow point to the trade open price
last_trigger_direction=OP_SELL;
_box_curr_trade=Time[t8];
_box_curr_trade_dir=OP_SELL;
_box_total_trades+=1; if (_box_total_trades==1) {InitialBreakoutDirection=OP_SELL;}
num_total_shorts +=1; s1=StringConcatenate(prefix,"SELL",TimeToStr(Time[t8]));
drawOrderArrow(s1, Time[t8], trigger_price, SellSignalArrowCode, SellSignalArrowColor, 2);
if (t8==0) {send_trading_signal(OP_SELL,Bid);}}
}
- 22-04-2013, 08:29 PM #26
المؤشر لا يعطي تنبيه صوتي
هل يوجد عندك تنبيه صوتي اخ فهد ؟؟
- 23-04-2013, 02:28 AM #27
اخ فهد
جزاك الله كل خير
بدون عمل اكسبرت لهذا المؤشر يكون متعب جدا
نرجوا عمل اكسبرت لة مع المضاعفات المذكورة
ولكن عزيزى فهد أليس من المفروض تعديل اعدادات المؤشر كل على حسب توقيتة ؟
او السؤال يكون هذة المستطيلات من اى شمعة الى اى شمعة ؟
تحياتى
- 23-04-2013, 03:20 PM #28
nice indicator
- 24-04-2013, 10:55 AM #29
- 24-04-2013, 11:10 AM #30
والله يا اخي المؤشر ممتاز و بالتجربه علي حساب حقيقي ...أفضل عملتين .. اليورو دولار و النيوزيلاندي دولار فريم 15د منصة جين كابيتال
جزاك الله خيرا اخ فهد , و يا ريت احد الاخوه يشوف موضوع الاكسبيرت ,ممكن في اسوا الاحوال نفتح ورشه للفرص