Ozymandias Indicator For MT5

Ozymandias Indicator For MT5

Table Of Contents:

  1. Ozymandias Indicator For MT5
  2. Cài đặt Ozymandias Indicator For MT5
  3. Các tham số của Ozymandias Indicator For MT5
  4. Bộ đệm của Ozymandias Indicator For MT5
  5. Các bộ phận chính của bộ luật

Ozymandias Indicator For MT5 là một công cụ giao dịch kỹ thuật tuyệt vời để có được như một biểu đồ vì chỉ báo này hoạt động đặc biệt tốt khi lọc biến động giá sai xảy ra khá thường xuyên trên thị trường - hành động giá được chuyển thành một dải ba lớp với đường giữa là đường màu hai màu được sử dụng để biểu thị hướng và độ lệch của thị trường, vì vậy đối với các ngành tăng giá trên thị trường, đường này sẽ có màu xanh lam và khi thị trường giao dịch trong ngành giảm giá thì đường này sẽ có màu đỏ . Hai dải khác của chỉ báo ở đó đóng vai trò là giới hạn trên và dưới - dải trên được coi là vùng quá mua trong khi dải dưới được coi là lề quá mức hoặc hướng dẫn - tuy nhiên các vùng quá bán và quá mua này phải được xác nhận vì có quá nhiều lần xảy ra khi hành động giá tiếp cận các khu vực này, do đó, điều mà nhà giao dịch có thể làm là tải lên một chỉ báo dao động khác hoạt động trong một cửa sổ riêng biệt từ chỉ báo. Cần lưu ý rằng chỉ báo này chủ yếu được sử dụng để xác định thời điểm thích hợp để đóng và mở giao dịch - việc thay đổi màu không nhằm mục đích sử dụng tín hiệu đảo ngược.

FREE Ozymandias Indicator

Download the FREE Ozymandias 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

 

Cài đặt Ozymandias Indicator For MT5

Sau khi bạn tải xuống chỉ báo qua biểu mẫu ở trên, bạn cần giải nén tệp zip. Sau đó, bạn cần sao chép tệp ozymandias.mq5 vào thư mục MQL5Indicators cài đặt MT5 của bạn. Sau đó, vui lòng khởi động lại MT5 và sau đó bạn sẽ có thể thấy chỉ báo trong danh sách các chỉ báo.

Các tham số của Ozymandias Indicator For MT5

Ozymandias Indicator For MT5 có các tham số 3 để cấu hình.

input uint Length=2; input  ENUM_MA_METHOD MAType=MODE_SMA; input int Shift=0;   // Ñäâèã èíäèêàòîðà ïî ãîðèçîíòàëè â áàðàõ 

Bộ đệm của Ozymandias Indicator For MT5

Ozymandias Indicator For MT5 cung cấp bộ đệm 4 .

SetIndexBuffer(0,IndBuffer,INDICATOR_DATA); SetIndexBuffer(1,ColorIndBuffer,INDICATOR_COLOR_INDEX); SetIndexBuffer(2,UpBuffer,INDICATOR_DATA); SetIndexBuffer(3,DnBuffer,INDICATOR_DATA); 

Các bộ phận chính của bộ luật

int OnCalculate(const int rates_total,    // êîëè÷åñòâî èñòîðèè â áàðàõ íà òåêóùåì òèêå                 const int prev_calculated,// êîëè÷åñòâî èñòîðèè â áàðàõ íà ïðåäûäóùåì òèêå                 const datetime &time[],                 const double &open[],                 const double &high[],                 const double &low[],                 const double &close[],                 const long &tick_volume[],                 const long &volume[],                 const int &spread[])   { //--- ïðîâåðêà êîëè÷åñòâà áàðîâ íà äîñòàòî÷íîñòü äëÿ ðàñ÷¸òà    if(BarsCalculated(ATR_Handle) lt rates_total       || BarsCalculated(HMA_Handle) lt rates_total       || BarsCalculated(LMA_Handle) lt rates_total       || rates_total lt min_rates_total) return(RESET); //--- îáúÿâëåíèå ïåðåìåííûõ    int to_copy,limit,trend0,nexttrend0;    double hh,ll,maxl0,minh0,lma,hma,atr,ATR[],HMA[],LMA[];    static int trend1,nexttrend1;    static double maxl1,minh1; //--- ðàñ÷¸ò ñòàðòîâîãî íîìåðà limit äëÿ öèêëà ïåðåñ÷¸òà áàðîâ    if(prev_calculated gt rates_total || prev_calculated lt =0)// ïðîâåðêà íà ïåðâûé ñòàðò ðàñ÷¸òà èíäèêàòîðà      {       limit=rates_total-min_rates_total-1; // ñòàðòîâûé íîìåð äëÿ ðàñ÷¸òà âñåõ áàðîâ       trend1=0;       nexttrend1=0;       maxl1=0;       minh1=9999999;      }    else limit=rates_total-prev_calculated;  // ñòàðòîâûé íîìåð äëÿ ðàñ÷¸òà òîëüêî íîâûõ áàðîâ    to_copy=limit+1; //--- êîïèðóåì âíîâü ïîÿâèâøèåñÿ äàííûå â ìàññèâû    if(CopyBuffer(ATR_Handle,0,0,to_copy,ATR) lt =0) return(RESET);    if(CopyBuffer(HMA_Handle,0,0,to_copy,HMA) lt =0) return(RESET);    if(CopyBuffer(LMA_Handle,0,0,to_copy,LMA) lt =0) return(RESET); //--- èíäåêñàöèÿ ýëåìåíòîâ â ìàññèâàõ êàê â òàéìñåðèÿõ      ArraySetAsSeries(close,true);    ArraySetAsSeries(high,true);    ArraySetAsSeries(low,true);    ArraySetAsSeries(ATR,true);    ArraySetAsSeries(HMA,true);    ArraySetAsSeries(LMA,true); //---    nexttrend0=nexttrend1;    maxl0=maxl1;    minh0=minh1; //--- îñíîâíîé öèêë ðàñ÷¸òà èíäèêàòîðà    for(int bar=limit; bar gt =0 && !IsStopped(); bar--)      {       hh=high[ArrayMaximum(high,bar,Length)];       ll=low[ArrayMinimum(low,bar,Length)];       lma=LMA[bar];       hma=HMA[bar];       atr=ATR[bar]/2;       trend0=trend1;       //---       if(nexttrend0==1)         {          maxl0=MathMax(ll,maxl0);           if(hma lt maxl0 && close[bar] lt low[bar+1])            {             trend0=1;             nexttrend0=0;             minh0=hh;            }         }       //---       if(nexttrend0==0)         {          minh0=MathMin(hh,minh0);           if(lma gt minh0 && close[bar] gt high[bar+1])            {             trend0=0;             nexttrend0=1;             maxl0=ll;            }         }       //---       if(trend0==0)         {          if(trend1!=0.0)            {             IndBuffer[bar]=IndBuffer[bar+1];             ColorIndBuffer[bar]=1;            }          else            {             IndBuffer[bar]=MathMax(maxl0,IndBuffer[bar+1]);             ColorIndBuffer[bar]=1;            }          UpBuffer[bar]=IndBuffer[bar]+atr;          DnBuffer[bar]=IndBuffer[bar]-atr;         }       else         {          if(trend1!=1)            {             IndBuffer[bar]=IndBuffer[bar+1];             ColorIndBuffer[bar]=0;            }          else            {             IndBuffer[bar]=MathMin(minh0,IndBuffer[bar+1]);             ColorIndBuffer[bar]=0;            }          UpBuffer[bar]=IndBuffer[bar]+atr;          DnBuffer[bar]=IndBuffer[bar]-atr;         }       //---       if(bar)         {          nexttrend1=nexttrend0;          trend1=trend0;          maxl1=maxl0;          minh1=minh0;         }      } //---        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.