النتائج 9,556 إلى 9,570 من 10335
الموضوع: موضوع مخصص للأسئلة البرمجية
- 11-05-2019, 11:40 AM #9556
- 11-05-2019, 11:44 AM #9557وظهرت معي الخطوط إلى نهاية الشارت وليست إلى نهاية اليوم مثلا 7 مايو 2019
- 11-05-2019, 11:46 AM #9558
OBJPROP_RAY مادخلها بالترند؟؟
الترندات تستخدم:
OBJPROP_RAY_RIGHT
- 11-05-2019, 12:28 PM #9559
- 11-05-2019, 12:57 PM #9560
ليش معقد الشغة كذا؟
كود:void Draw(string name, double price,color clr) { datetime now = TimeCurrent(); int TOD = now % HR24 ; // Time of day (date+time) datetime BOD = now - TOD; // Beginning of day+0000z datetime END = TOD - now ; // Ending of day+0000z if(ObjectFind(name)==-1) ObjectCreate(name,OBJ_TREND,0,BOD,price,END,price); ObjectSet(name,OBJPROP_TIME1,BOD); ObjectSet(name,OBJPROP_TIME2,END); ObjectSet(name,OBJPROP_PRICE1,price); ObjectSet(name,OBJPROP_PRICE2,price); ObjectSet(name,OBJPROP_STYLE,STYLE_SOLID); ObjectSet(name,OBJPROP_RAY,false); ObjectSet(name, OBJPROP_WIDTH, 5); ObjectSet(name, OBJPROP_COLOR, clr); }
احذف بعض الاسطر غير المهمة او مالها علاقة,:
اختصره الى:
كود:void Draw(string name, double price,color clr) { datetime now = TimeCurrent(); int TOD = now % HR24 ; // Time of day (date+time) datetime BOD = now - TOD; // Beginning of day+0000z datetime END = TOD - now ; // Ending of day+0000z ObjectCreate(name,OBJ_TREND,0,BOD,price,END,price); ObjectSet(name,OBJPROP_STYLE,STYLE_SOLID); ObjectSet(name,OBJPROP_RAYRIGHT,false); ObjectSet(name, OBJPROP_WIDTH, 5); ObjectSet(name, OBJPROP_COLOR, clr); }
- 11-05-2019, 12:59 PM #9561
عندك مشكلة في هذا السطر: كيف تطرح رقم صغير جدا من رقم كبير جدا--الناتج سيكون تايم بالسالب وهذه لايستوعبها الجهاز ويمد الخط عند الى ما لانهاية
datetime END = TOD - now ;
- 11-05-2019, 01:01 PM #9562
TOD عندك هي فرق الثواني لاخر يوم وقيمتها حسب كودك ستكون اقل من عدد ثواني اليوم 86400 ثانية!!
بينما قيمة التايم-كرنت فوق عئرات الملايين!!
- 11-05-2019, 01:05 PM #9563
أيضا لاحظت أخي انك صممته كمؤشر بينما الأفضل تصممه كخبير, لأنك لن تستخدم الداتا سريييييييز
- 11-05-2019, 01:11 PM #9564
save under experts
كود:#define HR24 86400 // 24*3600 extern double TakeProfit_1 = 0.0; extern double TakeProfit_2 = 0.0; extern double TakeProfit_3 = 0.0; extern double TakeProfit_4 = 0.0; extern string F5= "-----------------------------------------------------------------------------------------------"; extern double Support_1 = 0; extern double Support_2 = 0; extern double Support_3 = 0; extern double Support_4 = 0; extern string F8= "-----------------------------------------------------------------------------------------------"; extern double Resistant_1 = 0; extern double Resistant_2 = 0; extern double Resistant_3 = 0; extern double Resistant_4 = 0; color TakeProfit_1_color = Green; color TakeProfit_2_color = Green; color TakeProfit_3_color = Green; color TakeProfit_4_color = Green; color TakeProfit_5_color = Green; //------------------------------------------- color Support_1_color = Red; color Support_2_color = Red; color Support_3_color = Red; color Support_4_color = Red; //------------------------------------------- color Resistant_1_color = Red; color Resistant_2_color = Red; color Resistant_3_color = Red; color Resistant_4_color = Red; //+------------------------------------------------------------------+ int OnInit() { //--- create timer EventSetTimer(1); //--- return(INIT_SUCCEEDED); } //+------------------------------------------------------------------+ //| Expert deinitialization function | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { //--- destroy timer EventKillTimer(); } //+------------------------------------------------------------------+ //| Expert tick function | //+------------------------------------------------------------------+ void OnTick() { //--- } //| Timer function | //+------------------------------------------------------------------+ void OnTimer() { Draw("TAKE PROFIT 1",TakeProfit_1,TakeProfit_1_color); Draw("TAKE PROFIT 2",TakeProfit_2,TakeProfit_2_color); Draw("TAKE PROFIT 3",TakeProfit_3,TakeProfit_3_color); Draw("TAKE PROFIT 4",TakeProfit_4,TakeProfit_4_color); Draw("SUPPORT 1",Support_1,Support_1_color); Draw("SUPPORT 2",Support_2,Support_2_color); Draw("SUPPORT 3",Support_3,Support_3_color); Draw("SUPPORT 4",Support_4,Support_4_color); Draw("RESISTANT 1",Resistant_1,Resistant_1_color); Draw("RESISTANT 2",Resistant_2,Resistant_2_color); Draw("RESISTANT 3",Resistant_3,Resistant_3_color); Draw("RESISTANT 4",Resistant_4,Resistant_4_color); } void Draw(string name, double price,color clr) { datetime now = TimeCurrent(); int TOD = now % HR24 ; // Time of day (date+time) datetime BOD = now - TOD; // Beginning of day+0000z datetime END = TOD + now ; // Ending of day+0000z if(ObjectFind(name)==-1) ObjectCreate(name,OBJ_TREND,0,BOD,price,END,price); ObjectSet(name,OBJPROP_TIME1,BOD); ObjectSet(name,OBJPROP_TIME2,END); ObjectSet(name,OBJPROP_PRICE1,price); ObjectSet(name,OBJPROP_PRICE2,price); ObjectSet(name,OBJPROP_STYLE,STYLE_SOLID); ObjectSet(name,OBJPROP_RAY,false); ObjectSet(name, OBJPROP_WIDTH, 5); ObjectSet(name, OBJPROP_COLOR, clr); }
- 11-05-2019, 01:12 PM #9565
- 11-05-2019, 06:31 PM #9566
جربت أخي الفاضل وعملته اكسبيرت وليس مؤشر وعدلت أيضا في قيمة END الخطوط تظهر ممتده ولا تنتهي عند نهاية اليوم حتى بداية اليوم غير دقيقه
كما أحتاج باقي الاضافات كما في مشاركتي السابقه هنا
كما يظهر بالصورة
- 12-05-2019, 10:58 AM #9567
الزمن لايظهر في صورتك اخي!!
الكود أعلاه شغال معي حسب وصف الموضوع
والاثبات الصورة في اخر رد
- 12-05-2019, 11:00 AM #9568
أيضا لاحظت انك لم تعلق على هه الجزئية رغم انها كتبت لك وليس لنا:
datetime END = TOD - now ;
زمن بالسالب سينقلك لسنة 1969--لان بداية الزمن سنة 1970
- 12-05-2019, 12:54 PM #9569
اشكرك لردك وتعبك معي
بس بعد اذنك الموضوع موجه لمشرف المنتدى الاستاذ أسامه
بشكرك مرة تاني
- 12-05-2019, 01:29 PM #9570
المواضيع المتشابهه
-
موضوع مخصص للاكسبيرتات اللتي يستخدمها الاعضاء على الحقيقي,,عندك اكسبيرت ممتاز ضعه هنا
By محمد معمو in forum برمجة المؤشرات واكسبرتات التداول - Experts Advisor EAمشاركات: 11آخر مشاركة: 15-12-2023, 02:03 PM -
عااااااااااااجل ( موضوع مخصص للفرص الفورية)!!!
By عاشق الذبذبـة in forum توقعات وتوصيات سوق العملاتمشاركات: 280آخر مشاركة: 27-08-2009, 10:30 PM