FiboPivot_V2 Indicator For MT5

FiboPivot_V2 Indicator For MT5

Table Of Contents:

  1. FiboPivot_V2 Indicator For MT5
  2. Installera FiboPivot_V2 Indicator For MT5
  3. Parametrar för FiboPivot_V2 Indicator For MT5
  4. Buffertar från FiboPivot_V2 Indicator For MT5
  5. Huvuddelar i koden

FiboPivot_V2 Indicator For MT5 är ett enastående tekniskt handelsverktyg att använda eftersom det gör är att det automatiskt drar pivotpunktnivåerna med hjälp av Fibonaacci-förhållandena och därmed ger handlare en sund och potentiellt mycket lönsam handelsmiljö som man kan analysera och driva i. Pivot poäng är mycket viktiga när det gäller att definiera vissa nivåer på marknaderna eftersom dessa nivåer fungerar som mycket relevanta stöd- och motståndszoner på de marknader som marknaden följer oftast därför att befria handlare från den mödosamma uppgiften att dra sin egen motstånd och stödnivåer . Fibonacci-förhållanden är också viktiga när det gäller att formulera mycket relevant support- och motståndsnivåer på de marknader som handelstillgångar följer oftast - så det gör denna indikator till en robust och pålitlig resurs att ha när det gäller att ha nyckel och starkt stöd och motståndszoner dras automatiskt för alla handlare. I huvudsak vid varje given tidpunkt finns det alltid totalt sju linjer som visas i förhållande till Pivot-punktsindikatorn - den grundläggande pivotlinjen är färgad i lila, sedan finns stödlinjerna under huvudpivotlinjen som är färgade röd medan tre gröna motståndets pivotlinjer finns ovanför den huvudsakliga lila pivotlinjen.

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

 

Installera FiboPivot_V2 Indicator For MT5

När du har laddat ner indikatorn via formuläret ovan måste du packa upp zip-filen. Sedan måste du kopiera filen fibopivot_v2.mq5 till mappen MQL5Indicators för din MT5 installation. Efter det kan du starta om MT5 så kan du se indikatorn i listan över indikatorer.

Parametrar för FiboPivot_V2 Indicator For MT5

FiboPivot_V2 Indicator For MT5 har parametrar för 22 att konfigurera.

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; 

Buffertar från FiboPivot_V2 Indicator For MT5

FiboPivot_V2 Indicator For MT5 tillhandahåller 0 buffertar.

Huvuddelar i koden

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.