FiboPivot_V2 Indicator For MT5

FiboPivot_V2 Indicator For MT5

Table Of Contents:

  1. FiboPivot_V2 Indicator For MT5
  2. FiboPivot_V2 Indicator For MT5インストール
  3. FiboPivot_V2 Indicator For MT5パラメーター
  4. FiboPivot_V2 Indicator For MT5
  5. コードの主要部分

FiboPivot_V2 Indicator For MT5FiboPivot_V2 Indicator For MT5

FREE FiboPivot_V2 Indicator

Download the FREE FiboPivot_V2 Indicator for MT5.

To receive my email 100% sure: 
Put my email on your whitelist!

 

Partially Automated Trading Besides Your Day Job

Alerts In Real-Time When Divergences Occur

 

FiboPivot_V2 Indicator For MT5インストール

上記のフォームからインジケーターをダウンロードした後、zipファイルを解凍する必要があります。次に、ファイルfibopivot_v2.mq5MT5インストールのMQL5Indicatorsフォルダーにコピーする必要があります。その後、MT5を再起動してください。そうすると、インジケーターのリストにインジケーターが表示されます。

FiboPivot_V2 Indicator For MT5パラメーター

FiboPivot_V2 Indicator For MT5は、構成する22 パラメーターがあります。

input color  Color_R3 = MediumSeaGreen; //Color of the R3 level input color  Color_R2 = MediumSeaGreen; //Color of the R2 level input color  Color_R1 = MediumSeaGreen; //Color of the R1 level input color  Color_P  = DarkOrchid;     //Color of the P level input color  Color_S1 = Red;            //Color of the S1 level input color  Color_S2 = Red;            //Color of the S2 level input color  Color_S3 = Red;            //Color of the S3 level input STYLE  Style_R3 = DASHDOTDOT_;    //Line style of the R3 level input STYLE  Style_R2 = SOLID_;         //Line style of the R2 level input STYLE  Style_R1 = SOLID_;         //Line style of the R1 level input STYLE   Style_P = DASH_;          //Line style of the P level input STYLE  Style_S1 = SOLID_;         //Line style of the S1 level input STYLE  Style_S2 = SOLID_;         //Line style of the S2 level input STYLE  Style_S3 = DASHDOTDOT_;    //Line style of the S3 level input Width  Width_R3 = Width_1;        //The width of the R3 level input Width  Width_R2 = Width_3;        //The width of the R2 level input Width  Width_R1 = Width_1;        //The width of the R1 level input Width   Width_P = Width_1;        //The width of the P level input Width  Width_S1 = Width_1;        //The width of the S1 level input Width  Width_S2 = Width_3;        //The width of the S2 level input Width  Width_S3 = Width_1;        //The width of the S3 level input uint TextSize=8; 

FiboPivot_V2 Indicator For MT5

FiboPivot_V2 Indicator For MT5は、 0 バッファーを提供します。

コードの主要部分

int OnCalculate(                 const int rates_total,    // amount of history in bars at the current tick                 const int prev_calculated,// amount of history in bars at the previous tick                 const datetime &time[],                 const double &open[],                 const double& high[],     // price array of maximums of price for the calculation of indicator                 const double& low[],      // price array of price lows for the indicator calculation                 const double &close[],                 const long &tick_volume[],                 const long &volume[],                 const int &spread[]                 )   { //----     if(_Period gt =PERIOD_D1) return(0);  //---- declarations of static variables        static double yesterday_high,yesterday_low,yesterday_close;    static double P,R,S1,R1,S2,R2,S3,R3;     //---- indexing elements in arrays as in timeseries         ArraySetAsSeries(time,true);     if(prev_calculated!=rates_total)      {       //---- declaration of local variables        int    copy;       double iClose[],iHigh[],iLow[];       datetime iTime[];        //---- indexing elements in arrays as in timeseries         ArraySetAsSeries(iTime,true);       ArraySetAsSeries(iClose,true);       ArraySetAsSeries(iHigh,true);       ArraySetAsSeries(iLow,true);        copy=5;        if(CopyTime(NULL,PERIOD_D1,0,copy,iTime) lt copy)return(0);       if(CopyClose(NULL,PERIOD_D1,0,copy,iClose) lt copy)return(0);       if(CopyHigh(NULL,PERIOD_D1,0,copy,iHigh) lt copy)return(0);       if(CopyLow(NULL,PERIOD_D1,0,copy,iLow) lt copy)return(0);        MqlDateTime tm;       TimeToStruct(time[0],tm);        if(tm.day_of_week==MONDAY)         {          TimeToStruct(iTime[1],tm);          if(tm.day_of_week==FRIDAY)            {             yesterday_close=iClose[1];             yesterday_high=iHigh[1];             yesterday_low=iLow[1];            }          else            {             for(int d=5; d gt =0; d--)               {                TimeToStruct(iTime[d],tm);                if(tm.day_of_week==FRIDAY)                  {                   yesterday_close=iClose[d];                   yesterday_high=iHigh[d];                   yesterday_low=iLow[d];                  }               }            }         }       else         {          yesterday_close=iClose[1];          yesterday_high=iHigh[1];          yesterday_low=iLow[1];         }        Comment(" Yesterday quotations: H ",yesterday_high," L ",yesterday_low," C ",yesterday_close);        R=yesterday_high-yesterday_low;//range       P=(yesterday_high+yesterday_low+yesterday_close)/3;// Standard Pivot       R3 = P + (R * 1.000);       R2 = P + (R * 0.618);       R1 = P + (R * 0.382);       S1 = P - (R * 0.382);       S2 = P - (R * 0.618);       S3 = P - (R * 1.000);      }     SetHline(0,"R3_Line",0,R3,Color_R3,Style_R3,Width_R3,"Pivot "+DoubleToString(R3,_Digits));    SetHline(0,"R2_Line",0,R2,Color_R2,Style_R2,Width_R2,"Pivot "+DoubleToString(R2,_Digits));    SetHline(0,"R1_Line",0,R1,Color_R1,Style_R1,Width_R1,"Pivot "+DoubleToString(R1,_Digits));    SetHline(0,"Pivot_Line",0,P,Color_P,Style_P,Width_P,"Pivot "+DoubleToString(P,_Digits));    SetHline(0,"S1_Line",0,S1,Color_S1,Style_S1,Width_S1,"Pivot "+DoubleToString(S1,_Digits));    SetHline(0,"S2_Line",0,S2,Color_S2,Style_S2,Width_S2,"Pivot "+DoubleToString(S2,_Digits));    SetHline(0,"S3_Line",0,S3,Color_S3,Style_S3,Width_S3,"Pivot "+DoubleToString(S3,_Digits));        datetime TextTime=time[0]+PeriodSeconds();        SetText(0,"R3_Lable",0,TextTime,R3,"Resistance 3",Color_R3,"Times New Roman",TextSize,ANCHOR_LEFT_LOWER);    SetText(0,"R2_Lable",0,TextTime,R2,"Resistance 2",Color_R2,"Times New Roman",TextSize,ANCHOR_LEFT_LOWER);    SetText(0,"R1_Lable",0,TextTime,R1,"Resistance 1",Color_R1,"Times New Roman",TextSize,ANCHOR_LEFT_LOWER);    SetText(0,"Pivot_Lable",0,TextTime,P,"Piviot level",Color_P,"Times New Roman",TextSize,ANCHOR_LEFT_LOWER);    SetText(0,"S1_Lable",0,TextTime,S1,"Support 1",Color_S1,"Times New Roman",TextSize,ANCHOR_LEFT_LOWER);    SetText(0,"S2_Lable",0,TextTime,S2,"Support 2",Color_S2,"Times New Roman",TextSize,ANCHOR_LEFT_LOWER);    SetText(0,"S3_Lable",0,TextTime,S3,"Support 3",Color_S3,"Times New Roman",TextSize,ANCHOR_LEFT_LOWER);         //----    ChartRedraw(0); //----       return(rates_total);   } //+------------------------------------------------------------------+ 

 

About Me

I'm Mike Semlitsch the owner of PerfectTrendSystem.com. My trading career started in 2007. Since 2013 I have helped thousands of traders to take their trading to the next level. Many of them are now constantly profitable traders. 

The following performance was achieved by me while trading live in front of hundreds of my clients:

Connect With Me:  

Results From 5 Months!
This service starts soon! Be the first who get's notified when it begins!

This FREE Indicator Can Transform
Your Trading!

FREE Indicator + Telegram Group


Request the Ultimate Double Top/Bottom Indicator which is used by 10,000+ traders.