![]() | |
|
|
|
|
|
|
|
| وصلات دعم الموقع |
| ||||
| وهذا مؤشر من تجميعي فيه الmfi والاستكاستك بالاضافة لمتوسط 89 يوم حلو للمضاربة على النص ساعة { The trading system below buys a position whenever MFI crosses below 25. It sells all open positions as soon as MFI crosses above 75. The ChartScript also colors MFI bars red and green to show oversold/overbought levels. } var MFIPANE, BAR, P: integer; MFIPane := CreatePane( 100, true, true ); PlotSeries( MFISeries( 14 ), MFIPane, #WHITE, #Thin ); {Stochastic} begin var D, NPANE, K, BAR: integer; D := SMASeries( StochKSeries( 12 ), 3 ); nPane := CreatePane( 100, TRUE, FALSE ); K := SMASeries( StochKSeries(12 ), 3 ); D := SMASeries( K, 3 ); PlotSeries( K, nPane, 505, 0 ); PlotSeriesLabel( D, nPane, 999, 1, 'Stochastic' ); DrawHorzLine( 50, nPane, 990, 2 ); DrawHorzLine( 20, nPane,260, 2 ); DrawHorzLine( 80, nPane, 902, 2 ); SetPaneMinMax( nPane, -10, 110 ); end; {$I 'TBui Support Resistance'} DrawLabel( 'MFI( 14-9-5 )', MFIPane ); for Bar := 14 to BarCount - 1 do begin DrawHorzLine( 80,mfiPane, #red, #thin ); DrawHorzLine( 50,mfiPane, #Olive, #dotted ); DrawHorzLine( 20,mfiPane, #green, #thin ); if CrossUnderValue( Bar, MFISeries( 14 ), 20) then BuyAtMarket( Bar + 1, ''); if CrossOverValue( Bar, MFISeries( 14 ), 85) then for P := 0 to PositionCount - 1 do if PositionActive( P ) then SellAtMarket( Bar + 1, P, 'MFI' ); if MFI( Bar, 14 ) < 20 then SetColorScheme( #Lime, 906, #Olive, #black, #SILVER, #BLUE ); {sMA} begin const sMAperiod2 = 89; const PositionNum = 30; var Num: integer; var Bar: integer; var IsLong: boolean; PlotSeries( sMASeries ( #Close, sMAperiod2 ), 0, #WHITE, 0 ); end; { Draw the result of our commentary to the volume pane } var COMMENTARYSTRING: string; CommentaryString := ' moly'; DrawText( CommentaryString, 1, 4, 4, #WHITE,14 ); HideVolume end;
|
| ||||
![]() var PPOPANE, MACDPane, WeeklyPPOPane, MyMACD, MYPPO, MYPPO2, WeeklyPPO, PlotWeeklyPPO, BAR, MYPPOHISTO, MyPPOHisto2, WeeklyPPOHisto, PlotWeeklyPPOHisto, WeeklySignalLine, PlotWeeklySignalLine, MYMACDHISTO: Integer; var RealOldWeekSignal, OldWeekSignal, CurrentWeekSignal: float ; // --------------------------------------------------------------------------------------- // { Create a new chart pane to hold our MACD indicator } MACDPane := CreatePane( 100, TRUE, TRUE ); {Develop the 12,26 MACD Oscillator} MyMACD := CreateSeries(); for Bar := 26 to BarCount () - 1 do SetSeriesValue ( Bar, MyMACD, EMA( Bar, #close, 12) - EMA( Bar, #close,26 ) ); { Set the series for the MACD Histogram } MyMACDHisto := CreateSeries(); for Bar := 26 to BarCount () - 1 do SetSeriesValue ( Bar, MyMACDHisto, ((EMA( Bar, #close, 12) - EMA( Bar, #close,26 ))) - EMA(Bar, MyMACD, 9 )) ; // --------------------------------------------------------------------------------------- // var xBBU: float; var xBBL: float; PlotSeries( BBandUpperSeries( #Close, 10, 1.50 ), 0, 650, #Thin ); PlotSeries( BBandLowerSeries( #Close, 10, 1.50 ), 0, 650, #Thin ); PlotSeries( SMASeries( #Close, 10 ), 0, 650, #thin ); xBBU := BBandUpper( BarCount - 1, #Close, 10, 1.50 ); xBBL := BBandLower( BarCount - 1, #Close, 10, 1.50 ); //----------------------------------------------------------------------------------------------------------// var x: float; PlotSeries( SMASeries( #Close, 50 ), 0, #Red, #Thin ); x := SMA( BarCount - 1, #Close, 50 ); PlotSeries( SMASeries( #Close, 100 ), 0, #aqua, #dotted ); x := SMA( BarCount - 1, #Close, 100 ); PlotSeries( SMASeries( #Close, 14 ), 0, #fuchsia, #Thin ); x := SMA( BarCount - 1, #Close, 14 ); PlotSeries( SMASeries( #Close, 9 ), 0, #Green, #Thin ); x := SMA( BarCount - 1, #Close, 9 ); PlotSeries( SMASeries( #Close, 5 ), 0, #blue, #Thin ); x := SMA( BarCount - 1, #Close, 5 ); SetColorScheme( #Lime, 906, #Olive, #black, #Gray, #Silver ); {Plot the 12,26 MACD} PlotSeries( MyMACD, MACDPane, #red, #Thin ) ; {Plot a 9 day MACD signal line} PlotSeries( EMASeries( MyMACD, 9 ), MACDPane, #Blue, #dotted ) ; {Plot the MACD Histogram} PlotSeries( MyMACDHisto,MACDPane, 999, #ThickHist) ; DrawText( ' macd ',MACDPane, 4, 4, #white, 10 ); for Bar := 0 to BarCount - 1 do begin if (@MyMACDHisto[bar] > 0) then SetSeriesBarColor( Bar, MyMACDHisto, #green ) else if (@MyMACDHisto[bar] < 0) then SetSeriesBarColor( Bar, MyMACDHisto, #red ); end; var xRSI: float; var Pane1: integer; Pane1 := CreatePane( 80,true,false ); SetPaneMinMax( Pane1, 20, 80 ); DrawHorzLine( 50, Pane1, 009, #red ); DrawHorzLine( 30, Pane1, 090, #Dotted ); DrawHorzLine( 70, Pane1, 900, #Dotted ); PlotSeries( RSISeries( #Close, 14 ), Pane1, #yellow, #Thick ); xRSI := RSI( BarCount - 1, #Close, 14 ); DrawText( ' rsi' + FormatFloat( '#,##0.00', xRSI ), Pane1, 4, 4, #white, 8 ); { Draw the result of our commentary to the volume pane } var COMMENTARYSTRING: string; CommentaryString := 'moooooooly'; DrawText( CommentaryString, 1, 4, 4, #white,15 );
|
| ||||
| المؤشر الثالث من تجميعي وهو عبارة عن متوسطات وبولينجر وماكد وrsi
|
| ||||
![]() var BOPPANE: integer; { Create the Balance of Power Indicator } {BOP := CreateSeries; for Bar := 0 to BarCount - 1 do begin o := PriceOpen( Bar ); h := PriceHigh( Bar ); l := PriceLow( Bar ); c := PriceClose( Bar ); if h <> l then begin BullRewardO := ( h - o ) / ( h - l ); BearRewardO := ( o - l ) / ( h - l ); BullRewardC := ( c - l ) / ( h - l ); BearRewardC := ( h - c ) / ( h - l ); if c > o then begin BullRewardOC := ( c - o ) / ( h - l ); BearRewardOC := 0.0; end else begin BearRewardOC := ( o - c ) / ( h - l ); BullRewardOC := 0.0; end; BullRewardDaily := ( BullRewardO + BullRewardC + BullRewardOC ) / 3; BearRewardDaily := ( BearRewardO + BearRewardC + BearRewardOC ) / 3; BOPValue := BullRewardDaily - BearRewardDaily; SetSeriesValue( Bar, BOP, BOPValue ); end; end;} { Plot BOP } HideVolume; BOPPane := CreatePane( 150, false, true ); PlotSeries( SMASeries( BOPSeries, 14 ), BOPPane, #green, 2 ); PlotSeries( SMASeries( BOPSeries, 52 ), BOPPane, #Maroon, 2 ); DrawText( 'BOP 14 bar SMA', BOPPane, 4, 4, #green, 8 ); DrawText( 'BOP 52 bar SMA', BOPPane, 4, 16, #Maroon, 8 );
|
| ||||
| وهذا مؤشر ثاني
|
| ||||
| المؤشرات المستخدمة هي: end;1- Dema الفترة الزمنية 5 أيام . 2- Linear Regression Lndicator الفترة الزمنية 14 يوم . 3- Widers Smoothing الفترة الزمنية 14 يوم . كود {#OptVar1 4;1;12;1} var Bar: integer; var SMA1: integer = SMASeries( #Close, 5 ); var DMA1: integer = OffsetSeries( SMA1, -#OptVar1 ); PlotSeries( DMA1, 0, #WHITE, #Thick ); { Compare a Simple and Exponential Moving Average with Wilder's MA } var n: integer; var s, s2: string; n := 14; s := '(Close, ' + IntToStr( n ) + ' )'; s2 := '(Close, ' + IntToStr( 2 * n ) + ' )'; PlotSeriesLabel( WilderMASeries( #Close, n ), 0, #YELLOW, #Thick, 'WilderMA' + s ); { Report on how far closing prices are away from predicted value } SetColorScheme( #Lime, 906, #Olive, #black, #SILVER, #BLUE ); PlotSeries( LinearRegSeries( #Close, 14 ), 0, 029, #Thick ); for Bar := 14 to BarCount - 1 do begin if LastPositionActive then begin end else begin if not LastPositionActive then begin BuyAtClose( Bar, '0' ); end; end;
|
![]() |
| خيارات الموضوع | |
| طريقة العرض | |
| |
مواضيع مشابهة | ||||
| الموضوع | الكاتب | القسم | الردود | آخر مشاركة |
| هبوط مؤشرات الأسواق الخليجية | مال وأعمال | الأسواق الأمريكيه,الأوربيه,الأسيويه للأوراق الماليه | 0 | 01-07-2009 04:49 AM |
| خصائص ووظائف FX AccuCharts | خـدمة العمـلاء | أكاديمية الفوركس Forex | 0 | 23-05-2009 07:59 AM |
| أقسام المنتدى |
| أسـواق المال @ السوق السعودي للأوراق الماليه @ المنتدى العام - General Section @ الــشــكاوي - الإقــتراحات @ المنتدى الإسلامي - Islamic Section @ المنتديات الادارية @ الإشـراف - المراقبة @ الأسواق الخليجيه والعربيه للأوراق الماليه @ عملات - معادن - نفط - فوركس - Forex @ الأقسام العامه @ الطب, طب الاعشاب, الطب البديل, اعشاب طبيه, Health Section @ وظائف - موارد بشرية - وظائف نسائيه Jobs - Human Resources @ مهارات - تطوير النفس - تطوير الذات skills and self-restraint @ برامج التحليل الفني والمؤشرات @ اكاديمية اسواق واعمال الخليج @ أكاديمية الفوركس Forex @ مشاريع تجارية -الإعلانات الفردية والتجارية المجانية @ السياحه - السفر - دليل السياحة -الطقس - الصيد Travel -Weather - Tourism Guide @ برامج,كمبيوتر @ برامج كمبيوتر, برامج كاملة, برامج مجانية, تحميل برامج, PC Applications @ عقار عقارات فلل منازل قصور شاليهات استراحات اراضي اسواق العقار @ أرشيف التحليل الفني @ اتصالات - فضائيات - جوالات satellite - Phones @ أخبار السوق السعودي @ اعلانات الشركات @ تقارير السوق السعودي @ التحليل الفني والأساسي @ أخبار هيئة السوق المالية @ الأسواق الأمريكيه,الأوربيه,الأسيويه للأوراق الماليه @ مقاطع يوتيوب, مشاهد يوتيوب, لقطات يوتيوب, افلام يوتيوب, Youtube @ صدى الملاعب - كووورة - منتديات الرياضة - كرة القدم - Sports Section @ قسم توصيات فوركس | تداول عملات | تجارة عملات | Forex Trading @ قسم التحليلات والأخبار @ الصكوك والسندات @ المواضيع المكرره والمخالفه @ المكتبة الاقتصادية @ ركن نادي Google @ ركن نادي قيمزر Gamezer @ خيمة رمضان, شهر رمضان, رمضان 1431, رمضان 2010 @ |
|
|
![]() |