قديم 12-06-2011, 01:41 PM
  المشاركه #121

كاتب قدير

تاريخ التسجيل: Oct 2005
المشاركات: 8,424
منادي_2005 غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة dime مشاهدة المشاركة
الف شكر اخوي منادي علي المؤشر
بس ياريت تضع المؤشر بعد التصحيح افضل لاهنت
المؤشر لن يعمل معك الا بعد ان تتبع الخطوات السابقة

وشرح العضو abu fahd

وافي وكافي

المعادلة ليست نسخ ولصق فقط كباقي المعادلات



رد مع اقتباس
 
 

قديم 12-06-2011, 01:44 PM
  المشاركه #122

كاتب قدير

تاريخ التسجيل: Oct 2005
المشاركات: 8,424
منادي_2005 غير متواجد حالياً  

معادلـــــــــــــــــــــة للترند يومي أسبوعي اسبوعين شهري

_SECTION_BEGIN("seasionality");
// Define label bar (x) position location
#pragma nocache
blankRightBars = 5; //insert actual blank right bars specified in Preferences
barsInView = Status("lastvisiblebarindex") - Status("firstvisiblebarindex") - blankRightBars;
Offset = Param("Offset Bar", 0.95, 0, 1, 0.01);
textOffset = BarCount - (Offset * barsInView);


TimeFrameSet( inDaily) ;
HaClose =EMA((O+H+L+C)/4,3);
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
X=Haopen<Ref( Haopen,-1) OR AlmostEqual( Haopen,Ref(Haopen,-1));
Color = IIf( Haopen > Haclose, colorRed, IIf( X,7,14));
Plot(20,"", Color,styleHistogram|styleOwnScale|styleNoLabel, 0, 100 );
Plot( 21,"",colorBlack,styleOwnScale|styleArea|styleNoLabel,0, 100 );
PlotText("DAILY TREND", textoffset, 81.05, colorWhite);
CondB=Haopen > Haclose;CONDS=Haopen < Haclose;
event1=condS;
PlotShapes( IIf(event1 ,shapeDigit1,0) ,5, 0,81.0);
event2=CondB;
PlotShapes( IIf(event2 ,shapeDigit1,0) , 4, 0,81.0);
TimeFrameRestore();
TimeFrameSet( inWeekly) ;
HaClose =EMA((O+H+L+C)/4,3);
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
X=HaOpen<Ref( Haopen,-1) OR AlmostEqual( HaOpen,Ref(HaOpen,-1));

Color = IIf( Haopen > Haclose, colorRed, IIf( X,7,14));
Plot(40,"", Color, styleHistogram|styleOwnScale|styleNoLabel, 0, 100 );
Plot( 41,"",colorBlack,styleOwnScale|styleArea|styleNoLabel,0, 100 );
PlotText(" WEEKLY TREND", textoffset, 81.20, colorWhite);
CondB1=Haopen > Haclose;CONDS1=Haopen < Haclose;
event3=condS1;
PlotShapes( IIf(event3 ,shapeDigit2,0) ,5, 0,81.20);
event4=CondB1;
PlotShapes( IIf(event4 ,shapeDigit2,0) , 4, 0,81.2);


TimeFrameRestore();
TimeFrameSet( 10*inDaily) ;
HaClose =EMA((O+H+L+C)/4,3);
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
X=Haopen<Ref( Haopen,-1) OR AlmostEqual( Haopen,Ref(Haopen,-1));
Color2 = IIf( Haopen > Haclose, colorRed, IIf( X,7,14));
Plot(60,"", Color2, styleHistogram|styleOwnScale|styleNoLabel, 0, 100 );
Plot( 61,"",colorBlack,styleOwnScale|styleArea|styleNoLabel,0, 100 );
PlotText("2 WEEK TREND", textoffset, 81.40, colorWhite);
CondB2=Haopen > Haclose;CONDS2=Haopen < Haclose;
event4=condS2;
PlotShapes( IIf(event4 ,shapeDigit3,0) ,5, 0,81.40);
event5=CondB2;
PlotShapes( IIf(event5 ,shapeDigit3,0) , 4, 0,81.4);


TimeFrameRestore();
TimeFrameSet(20*inDaily) ;
HaClose =EMA((O+H+L+C)/4,3);
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
X=Haopen<Ref( Haopen,-1) OR AlmostEqual( Haopen,Ref(Haopen,-1));
Color4 = IIf( Haopen > Haclose, colorRed, IIf( X,7,14));
Plot(80,"", Color4, styleHistogram|styleOwnScale|styleNoLabel, 0, 100 );
Plot( 81,"",colorBlack,styleOwnScale|styleArea|styleNoLabel,0, 100 );
PlotText("MONTHLY TREND", textoffset, 81.55, colorWhite);
CondB3=Haopen > Haclose;CONDS3=Haopen < Haclose;
event6=condS3;
PlotShapes( IIf(event6 ,shapeDigit4,0) ,5, 0,81.65);
event7=CondB3;
PlotShapes( IIf(event7 ,shapeDigit4,0) , 4, 0,81.65);

TimeFrameRestore();
Sell=CondB AND CondB1 AND CondB2 OR Condb3;
Buy= CondS AND CondS1 AND CondS2 OR Conds3;
//Cover= Cond1 AND Cond2 OR Cond2 AND Cond3 OR Cond1 AND Cond3 ;
//Sell= Cond4 AND Cond5 OR Cond5 AND Cond6 OR Cond4 AND Cond6;
Buy=ExRem (Buy,Sell);Sell=ExRem(Sell,Buy);
PlotShapes(shapeCircle*Buy, colorGreen,0,81.85);
PlotShapes(shapeCircle*Sell, colorRed,0,81.85);
GraphXSpace = 15;

//......................................
_SECTION_END();
_SECTION_END();



رد مع اقتباس
قديم 12-06-2011, 01:56 PM
  المشاركه #123

كاتب قدير

تاريخ التسجيل: Oct 2005
المشاركات: 8,424
منادي_2005 غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة منادي_2005 مشاهدة المشاركة
من خلال تداولات اليوم

نجــــــــــــــرب

هناك سهمين أعطوا أشارة أيجابية على ضوء المؤشــــــــــرات

ســــــــــــــافكــــــــــــــو

سنــــــــــــــــــــــــــــــــــد

نتــــــــــــابع الأيــــــــــــام القادمة
سافكــــــــــــــــــــــــــــــــــــــو دعس
وسنــــــــــــــــد ننتظرها هاليومين

كما ذكرت المؤشـــــــــــــر في المنطقة الصفراء للأنتظار حتى العطـــــــــاء وسوف أقوم يوميا بوضع الشركات التي تنطبق عليها التوصية

ويبقـــــــــى للتجـــربة



رد مع اقتباس
قديم 12-06-2011, 02:23 PM
  المشاركه #124

عضو هوامير المميز

تاريخ التسجيل: Feb 2006
المشاركات: 216
dime غير متواجد حالياً  

الف شكر اخوي منادي اشتغل تمام


رد مع اقتباس
قديم 12-06-2011, 03:09 PM
  المشاركه #125

عضو قدير

تاريخ التسجيل: Nov 2007
المشاركات: 5,176
القنـSniperـاص غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة منادي_2005 مشاهدة المشاركة
معادلـــــــــــــــــــــة للترند يومي أسبوعي اسبوعين شهري

_section_begin("seasionality");
// define label bar (x) position location
#pragma nocache
blankrightbars = 5; //insert actual blank right bars specified in preferences
barsinview = status("lastvisiblebarindex") - status("firstvisiblebarindex") - blankrightbars;
offset = param("offset bar", 0.95, 0, 1, 0.01);
textoffset = barcount - (offset * barsinview);


timeframeset( indaily) ;
haclose =ema((o+h+l+c)/4,3);
haopen = ama( ref( haclose, -1 ), 0.5 );
hahigh = max( h, max( haclose, haopen ) );
halow = min( l, min( haclose, haopen ) );
x=haopen<ref( haopen,-1) or almostequal( haopen,ref(haopen,-1));
color = iif( haopen > haclose, colorred, iif( x,7,14));
plot(20,"", color,stylehistogram|styleownscale|stylenolabel, 0, 100 );
plot( 21,"",colorblack,styleownscale|stylearea|stylenolabel,0, 100 );
plottext("daily trend", textoffset, 81.05, colorwhite);
condb=haopen > haclose;conds=haopen < haclose;
event1=conds;
plotshapes( iif(event1 ,shapedigit1,0) ,5, 0,81.0);
event2=condb;
plotshapes( iif(event2 ,shapedigit1,0) , 4, 0,81.0);
timeframerestore();
timeframeset( inweekly) ;
haclose =ema((o+h+l+c)/4,3);
haopen = ama( ref( haclose, -1 ), 0.5 );
hahigh = max( h, max( haclose, haopen ) );
halow = min( l, min( haclose, haopen ) );
x=haopen<ref( haopen,-1) or almostequal( haopen,ref(haopen,-1));

color = iif( haopen > haclose, colorred, iif( x,7,14));
plot(40,"", color, stylehistogram|styleownscale|stylenolabel, 0, 100 );
plot( 41,"",colorblack,styleownscale|stylearea|stylenolabel,0, 100 );
plottext(" weekly trend", textoffset, 81.20, colorwhite);
condb1=haopen > haclose;conds1=haopen < haclose;
event3=conds1;
plotshapes( iif(event3 ,shapedigit2,0) ,5, 0,81.20);
event4=condb1;
plotshapes( iif(event4 ,shapedigit2,0) , 4, 0,81.2);


timeframerestore();
timeframeset( 10*indaily) ;
haclose =ema((o+h+l+c)/4,3);
haopen = ama( ref( haclose, -1 ), 0.5 );
hahigh = max( h, max( haclose, haopen ) );
halow = min( l, min( haclose, haopen ) );
x=haopen<ref( haopen,-1) or almostequal( haopen,ref(haopen,-1));
color2 = iif( haopen > haclose, colorred, iif( x,7,14));
plot(60,"", color2, stylehistogram|styleownscale|stylenolabel, 0, 100 );
plot( 61,"",colorblack,styleownscale|stylearea|stylenolabel,0, 100 );
plottext("2 week trend", textoffset, 81.40, colorwhite);
condb2=haopen > haclose;conds2=haopen < haclose;
event4=conds2;
plotshapes( iif(event4 ,shapedigit3,0) ,5, 0,81.40);
event5=condb2;
plotshapes( iif(event5 ,shapedigit3,0) , 4, 0,81.4);


timeframerestore();
timeframeset(20*indaily) ;
haclose =ema((o+h+l+c)/4,3);
haopen = ama( ref( haclose, -1 ), 0.5 );
hahigh = max( h, max( haclose, haopen ) );
halow = min( l, min( haclose, haopen ) );
x=haopen<ref( haopen,-1) or almostequal( haopen,ref(haopen,-1));
color4 = iif( haopen > haclose, colorred, iif( x,7,14));
plot(80,"", color4, stylehistogram|styleownscale|stylenolabel, 0, 100 );
plot( 81,"",colorblack,styleownscale|stylearea|stylenolabel,0, 100 );
plottext("monthly trend", textoffset, 81.55, colorwhite);
condb3=haopen > haclose;conds3=haopen < haclose;
event6=conds3;
plotshapes( iif(event6 ,shapedigit4,0) ,5, 0,81.65);
event7=condb3;
plotshapes( iif(event7 ,shapedigit4,0) , 4, 0,81.65);

timeframerestore();
sell=condb and condb1 and condb2 or condb3;
buy= conds and conds1 and conds2 or conds3;
//cover= cond1 and cond2 or cond2 and cond3 or cond1 and cond3 ;
//sell= cond4 and cond5 or cond5 and cond6 or cond4 and cond6;
buy=exrem (buy,sell);sell=exrem(sell,buy);
plotshapes(shapecircle*buy, colorgreen,0,81.85);
plotshapes(shapecircle*sell, colorred,0,81.85);
graphxspace = 15;

//......................................
_section_end();
_section_end();

ابو محمد ممكن تشرح المؤشر لاهنت



رد مع اقتباس
قديم 12-06-2011, 03:33 PM
  المشاركه #126

كاتب قدير

تاريخ التسجيل: Oct 2005
المشاركات: 8,424
منادي_2005 غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة القنـsniperـاص مشاهدة المشاركة
ابو محمد ممكن تشرح المؤشر لاهنت
معادلة عادية لمعرفة اتجاه الترند صاعد او هابط

صاعد ====== اخضر

هابط ======= احمر



رد مع اقتباس
قديم 12-06-2011, 03:35 PM
  المشاركه #127

عضو قدير

تاريخ التسجيل: Nov 2007
المشاركات: 5,176
القنـSniperـاص غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة منادي_2005 مشاهدة المشاركة
معادلة عادية لمعرفة اتجاه الترند صاعد او هابط

صاعد ====== اخضر

هابط ======= احمر

يعافيك ربي ومشكور يبو محمد شيك الخاص لاهنت



رد مع اقتباس
قديم 12-06-2011, 04:18 PM
  المشاركه #128

كاتب قدير

تاريخ التسجيل: Oct 2005
المشاركات: 8,424
منادي_2005 غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة القنـsniperـاص مشاهدة المشاركة
يعافيك ربي ومشكور يبو محمد شيك الخاص لاهنت
شيكت شيكت

أصبر شوي نهاية الأسبوع راح تكون عندك بأذن الله



رد مع اقتباس
قديم 12-06-2011, 04:49 PM
  المشاركه #129

عضو هوامير المميز

تاريخ التسجيل: Aug 2010
المشاركات: 3,401
(عاشق البورصة) غير متواجد حالياً  

الله يعافيك من كل شر ومشكور وما قصرت


رد مع اقتباس
قديم 12-06-2011, 04:50 PM
  المشاركه #130

عضو هوامير المميز

تاريخ التسجيل: Feb 2007
المشاركات: 695
Abu Fahed غير متواجد حالياً  

منادي
سنافر
themoon

لا شكر على واجب .



رد مع اقتباس
قديم 12-06-2011, 05:21 PM
  المشاركه #131

عضو قدير

تاريخ التسجيل: Nov 2007
المشاركات: 5,176
القنـSniperـاص غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة منادي_2005 مشاهدة المشاركة
شيكت شيكت

أصبر شوي نهاية الأسبوع راح تكون عندك بأذن الله

تسلم يبو محمد واعرف اني غثيتك بس والله كنت ودي اتاكد فقط



رد مع اقتباس
قديم 12-06-2011, 10:51 PM
  المشاركه #132

عضو هوامير المؤسس

تاريخ التسجيل: Sep 2005
المشاركات: 223
شامخ العود غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة abu fahed مشاهدة المشاركة
اخيرا عملت المعادلة ...
حل المشكلة يا شباب في الخطوات التالية :

أولا : نسخ الملفيين التاليين :
Juriklib.dll
kpami.dll
إلى المسار التالي :
C:\program files\amibroker\plugins
ثانيا : نسخ الملف التالي :
T3_include.afl
إلى المسار التالي :
C:\program files\amibroker\formulas\include
ثالثا : نسخ الملف التالي :
The foundation v13.00.afl
إلى المسار التالي :
C:\program files\amibroker\formulas\custom
رابعا : إعادة تشغل برنامج امي بروكر
خامسا : ادراج المؤشر the foundation v13.00.afl على الشارت
وإن شاء الله يعمل ..
ملاحظة :
قد يعيق برنامج الحماية عمل المؤشر كما حدث معي فيجب السماح له .


ما نفعت هالطريقة ... هل هناك حل آخر ؟


سؤال عام عن تصحيح الخطأ لأي معادلة :

كيف يتم تصحيح الخطأ ... يعني وش الإجراء بالتفصيل لتصحيح الأخطاء ؟
هل نفتح المعادلة ونضغط على باك سبيس وخلاص؟
حبذا شرح هالنقطة لأنها تستخدم بكثره كما أرى ..


..



رد مع اقتباس
إضافة رد


الكلمات الدلالية (Tags)
لعشاق, مواضيع, مجوعة, مدمجة, معادلات, الأمي, المعادلات, الخاصة, بالعضو, بروكر, تستاهلون, خير, ksa, lord, كبيرة, عن

أدوات الموضوع

تعليمات المشاركة
لا تستطيع إضافة مواضيع جديدة
لا تستطيع الرد على المواضيع
لا تستطيع إرفاق ملفات
لا تستطيع تعديل مشاركاتك

BB code is متاحة
كود [IMG] متاحة
كود HTML معطلة

الانتقال السريع



02:50 PM