النتائج 31 إلى 45 من 94
الموضوع: ورشة ارقام
- 23-06-2023, 09:46 PM #31
نسب فيبو اللي نعررفها . .
رغم ان الهدف ال EURUSD
ولكن الكود من اجل العمومية والحرية التامة في اي تستنق
- 23-06-2023, 09:47 PM #32
هناك مبدأ العدالة!!!
مثلا فيبو اليوررو دولار يحسب على اساس فرق 108.80 نقطة .. سعره الان (معدلا للنقاط) وليس 100 نقطة
فيبو المجنون يحسب على اساس 183 نقطة -- سعره الان وليس 100 نقطة
انا من اخترع هذا المفهوم كحرب ضد مؤشر ATR -- مؤشر البلداء . . . لايوجد اصدق لللرينج اليومي من سعر الزوج نفسه . .
طلال السميري مؤسس هذا المنتدى وقف احتراما لهذه الفكرة واستدعى وقتها ابو الذهب ليتعلمها
وهذا المفهوم سحر بعض الخواجات فطلقوا مؤشر ATRآخر تعديل بواسطة سلمان_العتيبي ، 23-06-2023 الساعة 09:57 PM
- 23-06-2023, 09:55 PM #33
بالمناسبة اسم والد طلال مهل . . .واسم مؤشر مهل عليه تقديرا له . . (وايضا عروبة وفصاحة الاسم وتميزه)
طلبت من الخواجات وهي ردود مثبتة في موقع فوركس فاكتوري يكتشفون مسمى له بناء على حروف MAHAL
فاتوا في النهاية ب
Market Analysis : Hybrid Algorethem Logic
وبنا عليه هذا اسم والده الطويل
- 23-06-2023, 10:40 PM #34
هذا الكود معمم.
الذهب فيه خانة فارغة في دالة OnInit عبها حسب ارقام وسيطك . .
تم حذفه فيه مشكلةآخر تعديل بواسطة سلمان_العتيبي ، 23-06-2023 الساعة 10:47 PM
- 23-06-2023, 10:43 PM #35
وحتى للمجنون؟؟ أليس أصدق!!
المشكلة عند اي مستوى يبي يوقف؟؟
انت ممكن تعرف سلفا؟؟
- 23-06-2023, 10:43 PM #36
ومع العدالة:
ولو أن الكود سيكون أعقد . . .
- 23-06-2023, 11:00 PM #37
لا بد من طريقة للاستفادة من هذه الخطوط اما بدعمها مع تحليل اخر فني كلاسيكي رقمي
ابدعت واوجزت
الاكسبيرت الاول الخدمي 99 وفر علي الكثير من الجهد للمراقبة والثاني اضافة اراها قوية للاول
يتبقى علينا التركيز والدراسة والبحث داخل هذه الاسعار والشموع لاقتناص الفرص
- 23-06-2023, 11:07 PM #38
هناك ايضا ما يسمى بالرقم 11 و 13 ولكن له طريقته في العمل على السعر
وهو يعتبر مناطق طلب وعرض قوية يحترمها السعر بنسبة كبيرة
فمثلاً اليورو دولار
نريد ان نكتب سعر اليورو دولار بحيث ان يكون مجموع الارقام مرة 11 ومرة 13
1.09200 ===== 1+9+2= 11
1.09400 ===== 1+9+4 =13
يتم رسم خطوطها ومراقبتها
بعض الاسعار لا تقبل الرقم 11 ولا 13
- 23-06-2023, 11:07 PM #39
الكود الذي تم حذفه قبل ردين . .
كود:color clr_333=C'0,111,000'; color clr_666=C'111,111,000'; color clr_999=C'111,0,000'; color clr_vl=C'255,0,255'; int cell_width=100; int TOTAL_DAYS=300; double d; int dig; int OnInit() { d=1000*_Point; dig=Digits-Digits%2-2; if(Digits%2==0)d=d/10; if(StringSubstr(Symbol(),0,6)=="XAUUSD") { ///ضع هنا قيمة دي ودق } EventSetTimer(1); return(INIT_SUCCEEDED); } void OnDeinit(const int reason) { EventKillTimer(); ObjectsDeleteAll(0); } void OnTimer() { draw_vlines(); button_panel(); } int font=7; int UPPER_START_X=200; void button_panel() { int dy=22; int y=-1;int dx=cell_width; int x=UPPER_START_X; color clr=C'88,88,88'; Create_Button(F1,DoubleToString(100*F1,2)+"/"+DoubleToString(100*cF1,2),x,y,dx,dy,font,CF1,clrBlack,clrNONE,""); x=x+dx; clr=C'88,88,88'; Create_Button(F2,DoubleToString(100*F2,2)+"/"+DoubleToString(100*cF2,2),x,y,dx,dy,font,CF2,clrWhite,clrNONE,""); x=x+dx; clr=C'88,88,88'; Create_Button(F3,DoubleToString(100*F3,2)+"/"+DoubleToString(100*cF3,2),x,y,dx,dy,font,CF3,clrWhite,clrNONE,""); x=x+dx; clr=C'88,88,88'; Create_Button(F4,DoubleToString(100*F4,2)+"/"+DoubleToString(100*cF4,2),x,y,dx,dy,font,CF4,clrWhite,clrNONE,""); x=x+dx; clr=C'88,88,88'; Create_Button(F5,DoubleToString(100*F5,2)+"/"+DoubleToString(100*cF5,2),x,y,dx,dy,font,CF5,clrWhite,clrNONE,""); } void Create_Button(string name,string text,int X,int Y,int W,int H,int width,color BackColor,color TextColor,color borderColor,string TOOL) { ObjectCreate(0,name,OBJ_BUTTON,0,0,0); ObjectSetInteger(0,name,OBJPROP_XSIZE,W); ObjectSetInteger(0,name,OBJPROP_YSIZE,H); ObjectSetInteger(0,name,OBJPROP_CORNER,CORNER_LEFT_UPPER); ObjectSetInteger(0,name,OBJPROP_XDISTANCE,X); ObjectSetInteger(0,name,OBJPROP_YDISTANCE,Y); ObjectSetInteger(0,name,OBJPROP_FONTSIZE,width); ObjectSetInteger(0,name,OBJPROP_HIDDEN,true); ObjectSetString(0,name,OBJPROP_TOOLTIP,TOOL); ObjectSetInteger(0,name,OBJPROP_BORDER_TYPE,BORDER_SUNKEN); ObjectSetInteger(0,name,OBJPROP_BACK,FALSE); ObjectSetInteger(0,name,OBJPROP_SELECTABLE,FALSE); ObjectSetInteger(0,name,OBJPROP_SELECTED,FALSE); ObjectSetInteger(0,name,OBJPROP_HIDDEN,FALSE); ObjectSetInteger(0,name,OBJPROP_ZORDER,1); ObjectSetInteger(0,name,OBJPROP_BGCOLOR,BackColor); ObjectSetInteger(0,name,OBJPROP_ALIGN,ALIGN_CENTER); ObjectSetInteger(0,name,OBJPROP_BORDER_COLOR,borderColor); ObjectSetInteger(0,name,OBJPROP_COLOR,TextColor); ObjectSetString(0,name,OBJPROP_FONT,0); ObjectSetString(0,name,OBJPROP_TEXT,text); ObjectSetInteger(0,name,OBJPROP_STATE,FALSE); } double F1=0.618033989; double F2=0.236067977; double F3=0.854101966; double F4=0.09016994; double F5=0.94427191; color CF1=C'155,155,155'; color CF2=C'155,155,0'; color CF3=C'155,0,155'; color CF4=C'0,155,155'; color CF5=C'155,0,0'; double cF1=1-F1; double cF2=1-F2; double cF3=1-F3; double cF4=1-F4; double cF5=1-F5; void draw_vlines() { cF1=1-F1; cF2=1-F2; cF3=1-F3; cF4=1-F4; cF5=1-F5; datetime time00=iTime(Symbol(),PERIOD_D1,0); double price01=double(DoubleToString(iOpen(Symbol(),PERIOD_D1,0),dig)); for(int i=10;i>=-10;i--) { string ii=StringSubstr("00"+i,StringLen("00"+i)-3,3); double price00=price01+i*d; double priceF1_618=price00+F1*d; double priceF1_382=price00+cF1*d; double priceF2_236=price00+F2*d; double priceF2_764=price00+cF2*d; double priceF3_854=price00+F3*d; double priceF3_146=price00+cF3*d; double priceF4_090=price00+F4*d; double priceF4_910=price00+cF4*d; double priceF5_944=price00+F5*d; double priceF5_056=price00+cF5*d; string name="priceF1_618"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF1_618); ObjectSetInteger(0,name,OBJPROP_COLOR,CF1); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,0); name="priceF1_382"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF1_382); ObjectSetInteger(0,name,OBJPROP_COLOR,CF1); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); name="priceF2_236"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF2_236); ObjectSetInteger(0,name,OBJPROP_COLOR,CF2); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,0); name="priceF2_764"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF2_764); ObjectSetInteger(0,name,OBJPROP_COLOR,CF2); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); name="priceF3_854"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF3_854); ObjectSetInteger(0,name,OBJPROP_COLOR,CF3); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,0); name="priceF3_146"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF3_146); ObjectSetInteger(0,name,OBJPROP_COLOR,CF3); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); name="priceF4_090"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF4_090); ObjectSetInteger(0,name,OBJPROP_COLOR,CF4); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,0); name="priceF4_910"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF4_910); ObjectSetInteger(0,name,OBJPROP_COLOR,CF4); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); name="priceF5_944"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF5_944); ObjectSetInteger(0,name,OBJPROP_COLOR,CF5); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,0); name="priceF5_056"+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,priceF5_056); ObjectSetInteger(0,name,OBJPROP_COLOR,CF5); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); } }
- 23-06-2023, 11:09 PM #40
- 23-06-2023, 11:10 PM #41
- 23-06-2023, 11:19 PM #42
عفواً … ولكن أكثر من يصطاد بالماء العكر يصطادون من المصائب يجيّرون كل شيء لصالحهم. الأصل في المثل هو محاولة الناس إيقاع الخلافات بين الناس والفتنة من دون طائل، فالماء العكر لا يوجد فيه سمك وإنما ضفادع وأفاع، ومن يصطاد فيه لا يجد ما يأكله، وإنما مجرد إهدار لوقته وضرر بالأخرين.. هذا هو معنى المثل! وبالتالى مستحيل يصبح ذلك الشخص مشرف .
- 23-06-2023, 11:41 PM #43
- 23-06-2023, 11:41 PM #44
ومع ذلك هذا الكود . .
كود:color clr_333=C'0,111,000'; color clr_666=C'111,111,000'; color clr_999=C'111,0,000'; color clr_vl=C'255,0,255'; int cell_width=100; int TOTAL_DAYS=300; double d; int dig; int n11=11; int n13=13; int OnInit() { d=1000*_Point; dig=Digits-Digits%2-2; if(Digits%2==0)d=d/10; if(StringSubstr(Symbol(),0,6)=="XAUUSD") { ///ضع هنا قيمة دي ودق } EventSetTimer(1); return(INIT_SUCCEEDED); } void OnDeinit(const int reason) { EventKillTimer(); ObjectsDeleteAll(0); } void OnTimer() { draw_vlines(); button_panel(); } int font=7; int UPPER_START_X=200; void button_panel() { int dy=22; int y=-1;int dx=cell_width; int x=UPPER_START_X; color clr=C'88,88,88'; Create_Button("N11",n11,x,y,dx,dy,font,CN11,clrBlack,clrNONE,""); x=x+dx; clr=C'88,88,88'; Create_Button("N13",n13,x,y,dx,dy,font,CN13,clrWhite,clrNONE,""); } void Create_Button(string name,string text,int X,int Y,int W,int H,int width,color BackColor,color TextColor,color borderColor,string TOOL) { ObjectCreate(0,name,OBJ_BUTTON,0,0,0); ObjectSetInteger(0,name,OBJPROP_XSIZE,W); ObjectSetInteger(0,name,OBJPROP_YSIZE,H); ObjectSetInteger(0,name,OBJPROP_CORNER,CORNER_LEFT_UPPER); ObjectSetInteger(0,name,OBJPROP_XDISTANCE,X); ObjectSetInteger(0,name,OBJPROP_YDISTANCE,Y); ObjectSetInteger(0,name,OBJPROP_FONTSIZE,width); ObjectSetInteger(0,name,OBJPROP_HIDDEN,true); ObjectSetString(0,name,OBJPROP_TOOLTIP,TOOL); ObjectSetInteger(0,name,OBJPROP_BORDER_TYPE,BORDER_SUNKEN); ObjectSetInteger(0,name,OBJPROP_BACK,FALSE); ObjectSetInteger(0,name,OBJPROP_SELECTABLE,FALSE); ObjectSetInteger(0,name,OBJPROP_SELECTED,FALSE); ObjectSetInteger(0,name,OBJPROP_HIDDEN,FALSE); ObjectSetInteger(0,name,OBJPROP_ZORDER,1); ObjectSetInteger(0,name,OBJPROP_BGCOLOR,BackColor); ObjectSetInteger(0,name,OBJPROP_ALIGN,ALIGN_CENTER); ObjectSetInteger(0,name,OBJPROP_BORDER_COLOR,borderColor); ObjectSetInteger(0,name,OBJPROP_COLOR,TextColor); ObjectSetString(0,name,OBJPROP_FONT,0); ObjectSetString(0,name,OBJPROP_TEXT,text); ObjectSetInteger(0,name,OBJPROP_STATE,FALSE); } color CN11=C'225,155,255'; color CN13=C'255,155,0'; void draw_vlines() { double point=_Point;if(point<DBL_EPSILON)point=1; datetime time00=iTime(Symbol(),PERIOD_D1,0); double price00=double(DoubleToString(iOpen(Symbol(),PERIOD_D1,0),dig)); for(int i=0;i<555;i++) { string ii=StringSubstr("00"+i,StringLen("00"+i)-4,4); double price11=price00+i*100*_Point; double price13=price00-i*100*_Point; string price11s=DoubleToString(price11/point,0); string price13s=DoubleToString(price13/point,0); int sum0=0; int sum1=0; for(int k=0;k<StringLen(price11s);k++) { sum0=sum0+int(StringSubstr(price11s,k,1)); } for(k=0;k<StringLen(price13s);k++) { sum1=sum1+int(StringSubstr(price13s,k,1)); } if(sum0==n11) { string name=price11s+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,price11); ObjectSetInteger(0,name,OBJPROP_COLOR,CN11); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); } else if(sum1==n11) { name=price13+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,price13); ObjectSetInteger(0,name,OBJPROP_COLOR,CN11); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); } else if(sum0==n13) { name=price11s+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,price11); ObjectSetInteger(0,name,OBJPROP_COLOR,CN13); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); } else if(sum1==n13) { name=price13+ii; ObjectDelete(name); ObjectCreate(0,name,OBJ_HLINE,0,0,price13); ObjectSetInteger(0,name,OBJPROP_COLOR,CN13); ObjectSetInteger(0,name,OBJPROP_RAY_RIGHT,FALSE); ObjectSetInteger(0,name,OBJPROP_STYLE,2); } } }
- 23-06-2023, 11:50 PM #45