• 5:01 صباحاً




أستاذ سمير برجاء انشاء اكسبيرت بالمدخلات المرفقة

إضافة رد
أدوات الموضوع
عضو نشيط
تاريخ التسجيل: Jun 2014
المشاركات: 298
معدل تقييم المستوى: 10
mmohy1 is on a distinguished road
17 - 02 - 2016, 03:53 PM
  #1
mmohy1 غير متواجد حالياً  
افتراضي أستاذ سمير برجاء انشاء اكسبيرت بالمدخلات المرفقة
أستاذ سمير

السلام عليكم

بعد التحية و الاحترام

برجاء انشاء اكسبيرت بالمدخلات ادناه و اجراء اى تحديثات مطلوبة (ان وجد)

مع خالص شكرى و تقديري

input h1=6,h2=23,MaxLoss=25, minilots = 1,offset=1,check=40;
vars currentbar = 1,stoch1min(series),t=0,t1=0,t2=0,longallowed(bool ),shortallowed(bool),i(number);
begin
currentbar := back(close);
if currentbar < check then return;

Fast_Stochastics(close,5,3);
stoch1min:=Fast_Stochastics.line_d;

t:=hour(timestamp[currentbar])*60;
t1:=h1*60;
t2:=h2*60;

longallowed:=false;
shortallowed:=false;
Bollinger_Bands(close,20,1);
if t>=t1 and t<=t2 and stoch1min[currentbar]< (20-offset) and low[currentbar]<Bollinger_Bands.line_lower[currentbar] and not short() and not long() then
begin
for i:=1 to check do
begin
if close[currentbar-5-i]<(close[currentbar]-0.0005) then longallowed:=true;
end;
if longallowed=true then
begin
buy(minilots);
end;
end;
if t>=t1 and t<=t2 and stoch1min[currentbar]> (80+offset) and high[currentbar]>Bollinger_Bands.line_upper[currentbar] and not short() and not long()then
begin
for i:=1 to check do
begin
if close[currentbar-5-i]>(close[currentbar]+0.0005) then shortallowed:=true;
end;
if shortallowed=true then
begin
sell(minilots);
end;
end;

Bollinger_Bands(close,20,2);
if short() and low[currentbar]<Bollinger_Bands.line_lower[currentbar] then exitshort();
if long() and high[currentbar]>Bollinger_Bands.line_upper[currentbar] then exitlong();
Bollinger_Bands(close,20,2);
if fpl()<-8000*minilots*(Bollinger_Bands.line_upper[currentbar]-Bollinger_Bands.line_lower[currentbar]) then
begin
if long() then begin alert("text","fpl BBS"); exitlong(); end;
if short() then begin alert("text","fpl BBS"); exitshort(); end;
end;

if fpl()<-MaxLoss*minilots then
begin
if long() then begin alert("text","max loss"); exitlong(); end;
if short() then begin alert("text","max loss"); exitshort(); end;
end;

end.
رد مع اقتباس

الصورة الرمزية سمير محمد ارمان
مشرف سابق
الصورة الرمزية سمير محمد ارمان
 
تاريخ التسجيل: Nov 2009
المشاركات: 33,660
معدل تقييم المستوى: 48
سمير محمد ارمان will become famous soon enough
افتراضي رد: أستاذ سمير برجاء انشاء اكسبيرت بالمدخلات المرفقة
2#
17 - 02 - 2016, 04:43 PM
السلام عليكم
لو فى اكسبيرت محتاج تعديل
ارجو وضعه فى المرفقات
لو مطلوب عمل اكسبيرت جديد
ارجو شرحه مع التوضيح من على الشارت
مع وضع بعض الفرص لايف
تحياتى لك
سمير محمد ارمان غير متواجد حالياً  
رد مع اقتباس


إضافة رد



جديد مواضيع منتدى المؤشرات و الاكسبرتات

المواضيع المتشابهه
الموضوع كاتب الموضوع المنتدى مشاركات آخر مشاركة
أستاذ سمير برجاء تحديث اكسبيرت mmohy1 منتدى المؤشرات و الاكسبرتات 6 14 - 12 - 2015 09:39 PM
أستاذ سمير برجاء المساعدة فى تحديث اكسبيرت و مؤشرات mmohy1 منتدى المؤشرات و الاكسبرتات 3 12 - 12 - 2015 01:03 PM
أستاذ سمير برجاء المساعدة فى تحديث اكسبيرت mmohy1 منتدى المؤشرات و الاكسبرتات 7 10 - 12 - 2015 04:08 PM
أستاذ سمير برجاء المساعدة فى الاكسبيرتات المرفقة mmohy1 منتدى المؤشرات و الاكسبرتات 7 09 - 12 - 2015 12:34 PM
أستاذ سمير ممكن اكسبيرت للاستراتيجية المرفقة mmohy1 منتدى المؤشرات و الاكسبرتات 32 24 - 08 - 2015 01:28 AM


05:01 AM