النتائج 1 إلى 3 من 3
  1. #1
    الصورة الرمزية DeLight
    DeLight غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Jan 2014
    الإقامة
    السعودية
    المشاركات
    160

    افتراضي مساعدة : عندي معادلة اابي احولها لملف mql4 واركبها في الميتاتريدى

    السلام عليكم ورحمة الله وبركاته

    عندي معادلة اابي احولها لملف mql4 واركبها في الميتاتريدى
    طبعا هي معادله السيولة وتعمل على الولث لاب حالياً


    انتظر مساعدتكم ولكم جزيل الشكر

  2. #2
    الصورة الرمزية Robo-coder
    Robo-coder غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Oct 2010
    المشاركات
    338

    افتراضي

    ممكن برمجة أي معادلة إن شاء الله

  3. #3
    الصورة الرمزية DeLight
    DeLight غير متواجد حالياً عضو المتداول العربي
    تاريخ التسجيل
    Jan 2014
    الإقامة
    السعودية
    المشاركات
    160

    افتراضي

    حياك اخوي

    واتمنى تساعدنا بأنتظارك






    {$I 'BearPowerVG'}
    {$I 'BullPowerVG'}

    const SmoothBullBear = 20;
    const SmoothBBB = 30;

    var Bar, BullPane: integer;
    var BullPowerVG1, BearPowerVG1: integer;
    var BBB, BBBPane: integer;

    { Create Custom Chart Panes }
    BullPane := CreatePane( 75, true, true );
    BBBPane := CreatePane( 150, true, true );

    { Obtain and Plot the BullPower and BearPower, smoothed }
    BullPowerVG1 := SMASeries( BullPowerVGSeries, SmoothBullBear );
    PlotSeriesLabel( BullPowerVG1, BullPane, 050, #Thick, 'BullPower' );
    BearPowerVG1 := SMASeries( BearPowerVGSeries, SmoothBullBear );
    PlotSeriesLabel( BearPowerVG1, BullPane, 900, #Thick, 'BearPower' );

    { Calculate and Plot the smoothed BBB indicator }
    BBB := SMASeries( SubtractSeries( BullPowerVG1, BearPowerVG1 ), SmoothBBB );
    PlotSeriesLabel( BBB, BBBPane, #Navy, #ThickHist, 'BBB' );

    { Implement trading system rules }
    for Bar := 60 to BarCount - 1 do
    begin
    SetSeriesBarColor( Bar, BBB, #Navy );
    if MarketPosition = 0 then
    begin
    if @BBB[Bar] < 0 then
    if TurnUp( Bar, BBB ) then
    begin
    SetSeriesBarColor( Bar, BBB, #Lime );
    BuyAtMarket( Bar + 1, '' );
    end;
    end
    else
    begin
    if @BBB[Bar] > 0 then
    if TurnDown( Bar, BBB ) then
    begin
    SetSeriesBarColor( Bar, BBB, #Red );
    SellAtMarket( Bar + 1, LastPosition, '' );
    end;
    end;
    end;


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17