قديم 23-08-2012, 12:08 AM
  المشاركه #589

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

تاريخ التسجيل: Jul 2006
المشاركات: 664
خالد35 غير متواجد حالياً  

كل عام وانت بخير اخوي منادي
والله يجزاك خير على الجهود اللي تسويها للمنتدى واعضاءه
الله يحفظك معادلة البولنجر لا تعمل؟المعادله اللي بالمشاركه 4 يطلع لي خطأ ياليت تحطها بمستند شاكر ومقدر



رد مع اقتباس
 
 

قديم 23-08-2012, 01:05 AM
  المشاركه #590

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

تاريخ التسجيل: Dec 2008
المشاركات: 250
الرسام3 غير متواجد حالياً  

الله يبارك في ايامك

وكل عام وانت بخير



رد مع اقتباس
قديم 23-08-2012, 01:12 AM
  المشاركه #591

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

تاريخ التسجيل: Dec 2008
المشاركات: 250
الرسام3 غير متواجد حالياً  

ابو محمد معادلة هذا الموشر اجدها عندك ولك الشكر

رد: كل عــــــــــــام وأنتم بخيــــــــــــر



رد مع اقتباس
قديم 23-08-2012, 01:22 AM
  المشاركه #592

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

تاريخ التسجيل: May 2008
المشاركات: 881
نجم الرياض1 غير متواجد حالياً  

شكرا لك كثيرا جزيلا .. عيدك مبارك وكل عام وانت بخير


رد مع اقتباس
قديم 23-08-2012, 03:32 AM
  المشاركه #593

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

تاريخ التسجيل: Jul 2006
المشاركات: 664
خالد35 غير متواجد حالياً  

الرسام تفضل
_SECTION_BEGIN( "Stoch KD Cloud" );
/*
Stochastic is an oscillator that measures the position of a stock OR security compared with its recent trading range indicating overbought OR oversold conditions.
It displays current Day price at a percentage relative to the security’s trading range (High/Low) over the specified period of time.
In a Slow Stochastic, the highs AND lows are averaged over a slowing period. The default is usually 3 for slow AND 1 (no slowing) for fast.
The line can then be smoothed using an exponential moving average, Weighted, OR simple moving average %D.
Confirming Buy/Sell signals can be read at intersections of the %D with the %K as well.
The Stochastic Oscillator always ranges between 0% AND 100%.
A reading of 0% shows that the security’s Close was the Lowest price that the security has traded during the preceding x-time periods.
A reading of 100% shows that the security’s Close was the Highest price that the security has traded during the preceding x-time periods.
When the closing price is near the top of the recent trading range (above 80%), the security is in an overbought condition AND may Signal for a possible correction.
Oversold condition exists at a point below %20. Prices Close near the top of the range during uptrends AND near the bottom of the range during downtrends.
Source: Amibroker 5.20 Help Menu
BUY = When the Stochastic is below the 20 oversold line AND the %K line crosses over the %D line.
SELL = When the Stochastic is above the 80 overbought line AND the %K line crosses below the %D line.
*/
periods = Param( "Periods", 15, 1, 200, 1 );
Ksmooth =
Param( "%K Avg", 3, 1, 200, 1 );
a =
StochK( periods , Ksmooth);
Plot( a, _DEFAULT_NAME(), ParamColor( "Color", colorBrightGreen ), ParamStyle("Style") );
Dsmooth =
Param( "%D Avg", 3, 1, 200, 1 );
b =
StochD( periods , Ksmooth, DSmooth );
Plot( b, _DEFAULT_NAME(), ParamColor( "Color", colorRed ), ParamStyle("Style") );
PlotOHLC( a,a,b,a,"", IIf(a>b, colorBrightGreen, colorRed), styleCloud);
Overbought=
80; Oversold= 20;
Plot(Overbought,"OB",colorRed);
Plot(Oversold,"OS",colorGreen);Buy = Cross( a, b );Sell = Cross( b, a );
PlotShapes( shapeSmallUpTriangle * Buy + shapeSmallDownTriangle * Sell, IIf( Buy, colorDarkGreen, colorBlack ) );
_SECTION_END();
_SECTION_BEGIN("Animated_BackGround_");
// http://amibrokertraders.blogspot.com //
//====================
for( i = 1; i < BarCount; i++ )
z = (
GetPerformanceCounter()/100)%256;
anim=
ColorHSB( ( i + z ) % 256, 255, 100 );
SetChartBkColor(anim);
RequestTimedRefresh(1);
//====================
_SECTION_END();



رد مع اقتباس
قديم 23-08-2012, 06:56 AM
  المشاركه #594

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

تاريخ التسجيل: Dec 2008
المشاركات: 250
الرسام3 غير متواجد حالياً  

اقتباس:
المشاركة الأصلية كتبت بواسطة خالد35 مشاهدة المشاركة
الرسام تفضل
_section_begin( "stoch kd cloud" );
/*
stochastic is an oscillator that measures the position of a stock or security compared with its recent trading range indicating overbought or oversold conditions.
it displays current day price at a percentage relative to the security’s trading range (high/low) over the specified period of time.
in a slow stochastic, the highs and lows are averaged over a slowing period. The default is usually 3 for slow and 1 (no slowing) for fast.
the line can then be smoothed using an exponential moving average, weighted, or simple moving average %d.
confirming buy/sell signals can be read at intersections of the %d with the %k as well.
the stochastic oscillator always ranges between 0% and 100%.
a reading of 0% shows that the security’s close was the lowest price that the security has traded during the preceding x-time periods.
a reading of 100% shows that the security’s close was the highest price that the security has traded during the preceding x-time periods.
when the closing price is near the top of the recent trading range (above 80%), the security is in an overbought condition and may signal for a possible correction.
oversold condition exists at a point below %20. Prices close near the top of the range during uptrends and near the bottom of the range during downtrends.
source: Amibroker 5.20 help menu
buy = when the stochastic is below the 20 oversold line and the %k line crosses over the %d line.
sell = when the stochastic is above the 80 overbought line and the %k line crosses below the %d line.
*/
periods = param( "periods", 15, 1, 200, 1 );
ksmooth = param( "%k avg", 3, 1, 200, 1 );
a = stochk( periods , ksmooth);
plot( a, _default_name(), paramcolor( "color", colorbrightgreen ), paramstyle("style") );
dsmooth = param( "%d avg", 3, 1, 200, 1 );
b = stochd( periods , ksmooth, dsmooth );
plot( b, _default_name(), paramcolor( "color", colorred ), paramstyle("style") );
plotohlc( a,a,b,a,"", iif(a>b, colorbrightgreen, colorred), stylecloud);
overbought= 80; oversold= 20;
plot(overbought,"ob",colorred);
plot(oversold,"os",colorgreen);buy = cross( a, b );sell = cross( b, a );
plotshapes( shapesmalluptriangle * buy + shapesmalldowntriangle * sell, iif( buy, colordarkgreen, colorblack ) );
_section_end();
_section_begin("animated_background_");
// http://amibrokertraders.blogspot.com //
//====================
for( i = 1; i < barcount; i++ )
z = (getperformancecounter()/100)%256;
anim=colorhsb( ( i + z ) % 256, 255, 100 );
setchartbkcolor(anim);
requesttimedrefresh(1);
//====================
_section_end();
الف شكر اخوي خالد وكل عام وانت بخير



رد مع اقتباس
قديم 25-08-2012, 02:10 AM
  المشاركه #595

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

تاريخ التسجيل: Apr 2005
المشاركات: 1,013
abdullah غير متواجد حالياً  

جزاك الله خير

احتاج المؤشر الاخير اذا سمحت



رد مع اقتباس
قديم 27-08-2012, 09:04 PM
  المشاركه #596

ابو نايف

تاريخ التسجيل: Feb 2012
المشاركات: 205
المجد222 غير متواجد حالياً  

الله يوفقك ...ويجزاك خير الدارين...


رد مع اقتباس
قديم 27-08-2012, 09:17 PM
  المشاركه #597

ابو نايف

تاريخ التسجيل: Feb 2012
المشاركات: 205
المجد222 غير متواجد حالياً  

اتابعك منذ زمن ولم اكن استطيع التعليق لعدم تفعيل المعرف ...واليوم واجب علي وحق لك ان اشكرك وادعي لك على جهودك وتفانيك وحبك للخير ..وفقك الله ورزقك ومن تعز خير الدارين وتقبل تحيات وتقدير اخيك,,,


رد مع اقتباس
قديم 27-08-2012, 09:41 PM
  المشاركه #598

ابو نايف

تاريخ التسجيل: Feb 2012
المشاركات: 205
المجد222 غير متواجد حالياً  

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


ياليت تحط صور للمؤشرات
جزاك الله خير على ما تقدم ,,,,ونفس الطلب لتكتمل روعة معادلاتك,,, كل الود والتقدير,,,,,



رد مع اقتباس
قديم 28-08-2012, 09:17 AM
  المشاركه #599

كاتب قدير

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

اقتباس:
المشاركة الأصلية كتبت بواسطة المجد222 مشاهدة المشاركة
اتابعك منذ زمن ولم اكن استطيع التعليق لعدم تفعيل المعرف ...واليوم واجب علي وحق لك ان اشكرك وادعي لك على جهودك وتفانيك وحبك للخير ..وفقك الله ورزقك ومن تعز خير الدارين وتقبل تحيات وتقدير اخيك,,,
هلا وغلا ومرحبا

سعدت بتواجدك أخي ابو نايف وكل عام وأنت بخير وشاكر ومقدر أطراءك الجميل وأتمنى ان تكون بصحة وعافية
وشرفت صفحتــــــــــــي

تحياتي لك



رد مع اقتباس
قديم 29-08-2012, 02:13 AM
  المشاركه #600

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

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

الله يحفظك ويبارك فيك ويجزاك عنا خير الجزاء


رد مع اقتباس


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

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

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

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

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



11:30 AM