النتائج 16 إلى 30 من 107
الموضوع: سؤال برمجى مهم جدا
- 18-07-2012, 07:32 PM #16
- 18-07-2012, 07:34 PM #17
- 18-07-2012, 07:39 PM #18
تفضل
كود PHP:Tenkan=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_TENKANSEN,shift);
Kijun=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_KIJUNSEN,shift);
Senkou=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_CHINKOUSPAN,0+kijunsen);
Senkoua=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_SENKOUSPANA,shift);
Senkoub=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_SENKOUSPANB,shift);
Ichimoku_B=iCustom(Symbol(),0,"Ichimoku Trend Magic Histogram with Alert",1,1);
Ichimoku_S=iCustom(Symbol(),0,"Ichimoku Trend Magic Histogram with Alert",0,1);
//-----------------buy&sell ----------------
if ((Close[0]>Tenkan)&&(Close[0]>Kijun)&&(Close[0]>Senkoub)&&(Close[0]>Senkoua)&&(Ichimoku_B==3)&&(Senkou>Senkoub&&Senkou>Senkoua)){ // ------------------------ 22
if(orderscnt()<MaxTrades){
if(stoploss==0){sl=0;}else{sl=Ask-stoploss*Point;}
if(takeprofit==0){tp=0;}else{tp=Ask+takeprofit*Point;}
OrderSend(Symbol(),OP_BUY,Lots,Ask,2,sl,tp,"My Own Expert",ID,0,Blue);
PlaySound("Alert.wav");
}
}
if ((Close[0]<Tenkan)&&(Close[0]<Kijun)&&(Close[0]<Senkoua)&&(Close[0]<Senkoub)&&(Ichimoku_S==3)&&(Senkou<Senkoub&&Senkou<Senkoua)){ // ------------------------ 23
if(orderscnt()<MaxTrades){
if(stoploss==0){sl=0;}else{sl=Bid+stoploss*Point;}
if(takeprofit==0){tp=0;}else{tp=Bid-takeprofit*Point;}
OrderSend(Symbol(),OP_SELL,Lots,Bid,2,sl,tp,"My Own Expert",ID,0,Red);
PlaySound("Alert.wav");
}
- 18-07-2012, 07:42 PM #19
- 18-07-2012, 07:44 PM #20
- 18-07-2012, 07:54 PM #21
- 18-07-2012, 08:03 PM #22
اه نعم فيه شئ نسيناه
الان اعدل لك الاكسبريت
- 18-07-2012, 08:05 PM #23
- 18-07-2012, 08:08 PM #24
رد:سؤال برمجى مهم جدا
جرب كذا
كود PHP:Tenkan=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_TENKANSEN,shift);
Kijun=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_KIJUNSEN,shift);
Senkou=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_CHINKOUSPAN,0+kijunsen);
Senkoua=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_SENKOUSPANA,shift);
Senkouaplus=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_SENKOUSPANA,shift+kijunsen);
Senkoub=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_SENKOUSPANB,shift);
Senkoubplus=iIchimoku(NULL,0,tenkansen,kijunsen,senkospan,MODE_SENKOUSPANB,shift+kijunsen);
Ichimoku_B=iCustom(Symbol(),0,"Ichimoku Trend Magic Histogram with Alert",1,1);
Ichimoku_S=iCustom(Symbol(),0,"Ichimoku Trend Magic Histogram with Alert",0,1);
//-----------------buy&sell ----------------
if ((Close[0]>Tenkan)&&(Close[0]>Kijun)&&(Close[0]>Senkoub)&&(Close[0]>Senkoua)&&(Ichimoku_B==3)&&(Senkou>Senkoubplus&&Senkou>Senkouaplus)){ // ------------------------ 22
if(orderscnt()<MaxTrades){
if(stoploss==0){sl=0;}else{sl=Ask-stoploss*Point;}
if(takeprofit==0){tp=0;}else{tp=Ask+takeprofit*Point;}
OrderSend(Symbol(),OP_BUY,Lots,Ask,2,sl,tp,"My Own Expert",ID,0,Blue);
PlaySound("Alert.wav");
}
}
if ((Close[0]<Tenkan)&&(Close[0]<Kijun)&&(Close[0]<Senkoua)&&(Close[0]<Senkoub)&&(Ichimoku_S==3)&&(Senkou<Senkoubplus&&Senkou<Senkouaplus)){ // ------------------------ 23
if(orderscnt()<MaxTrades){
if(stoploss==0){sl=0;}else{sl=Bid+stoploss*Point;}
if(takeprofit==0){tp=0;}else{tp=Bid-takeprofit*Point;}
OrderSend(Symbol(),OP_SELL,Lots,Bid,2,sl,tp,"My Own Expert",ID,0,Red);
PlaySound("Alert.wav");
}
- 18-07-2012, 08:13 PM #25
الفكرت تعتمد علي مقارنت الشنكو ب سبان a وسبان b
وبما ان الشنكو متاخر ب 26 شمعة
ندخل متغير اخر للسبان a و سبان b
ونضعه متاخر ب 26 شمعة للمقارنة
- 18-07-2012, 08:16 PM #26
- 18-07-2012, 08:18 PM #27
وعندك طريقة اخري للفلتره انا قراتها مرة لاكن لست متاكد من المعلومة جيدا
تقارن عرض سحابة كوموسبان بالسحابة الاخري نسيت اسمها
وفيه شروط تتعلق بالسحبات للدخول الممتاز
- 18-07-2012, 08:18 PM #28
لا
في الشنكو فقط نضعها 26
الباقي تبقي 0
- 18-07-2012, 08:19 PM #29
- 18-07-2012, 08:21 PM #30
دقيقة اقرء الكود من جديد