Darvas Box Indicator For MT5
Table Of Contents:
- Darvas Box Indicator For MT5
- Darvas Box Indicator For MT5 स्थापित करना
- Darvas Box Indicator For MT5 पैरामीटर
- Darvas Box Indicator For MT5 के Darvas Box Indicator For MT5
- संहिता के मुख्य भाग
Darvas Box Indicator For MT5 के लिए निकोलस डार्वस के काम पर आधारित है। दरवस बॉक्स का उपयोग नई ऊँचाई और नए चढ़ाव की दिशा में व्यापार करने के लिए किया जाता है। बक्से ऐसे ब्रेकआउट का पता लगाना आसान बनाते हैं। यह संकेतक दरवेश बॉक्स गणना के आधार पर एक चैनल खींचता है। चैनल की ऊपरी सीमा नीले रंग में खींची गई है, जबकि चैनल की निचली सीमा बैंगनी रंग से खींची गई है।
Darvas Box Indicator For MT5 स्थापित करना
आपके द्वारा उपर्युक्त फ़ॉर्म के माध्यम से संकेतक डाउनलोड करने के बाद आपको ज़िप-फ़ाइल को अनज़िप करना होगा। तो फिर तुम फाइल कॉपी करने की जरूरत है darvasboxes.mq5 फ़ोल्डर में MQL5Indicators अपने की MT5 स्थापना। उसके बाद कृपया MT5 को पुनः आरंभ करें और फिर आप संकेतक की सूची में संकेतक देख पाएंगे।
Darvas Box Indicator For MT5 पैरामीटर
Darvas Box Indicator For MT5 पास कॉन्फ़िगर करने के लिए 2 पैरामीटर हैं।
input bool symmetry=false; input int Shift=0; // Horizontal shift of the indicator in bars
Darvas Box Indicator For MT5 के Darvas Box Indicator For MT5
Darvas Box Indicator For MT5 2 बफ़र्स प्रदान करता है।
SetIndexBuffer(0,UpperBuffer,INDICATOR_DATA); SetIndexBuffer(1,LowerBuffer,INDICATOR_DATA);
संहिता के मुख्य भाग
int OnCalculate(const int rates_total, // number of bars in history at the current tick const int prev_calculated,// number of bars calculated at previous call 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[]) { //---- checking the number of bars to be enough for the calculation if(rates_total lt start) return(0); //---- indexing elements in arrays as timeseries ArraySetAsSeries(high,true); ArraySetAsSeries(low,true); //---- declaration of integer variables int limit,bar; //---- declaration of static variables static int state,STATE; static double box_top,box_bottom,BOX_TOP,BOX_BUTTOM; //---- calculations of the limit starting index for the bars recalculation loop if(prev_calculated gt rates_total || prev_calculated lt =0)// checking for the first start of the indicator calculation { limit=rates_total-start; // starting index for calculation of all bars BOX_TOP=high[limit+1]; BOX_BUTTOM=low[limit+1]; STATE=1; } else { limit=rates_total-prev_calculated; // starting index for calculation of new bars } //---- restore values of the variables state=STATE; box_top=BOX_TOP; box_bottom=BOX_BUTTOM; //---- main indicator calculation loop for(bar=limit; bar gt =0; bar--) { //---- store values of the variables before running at the current bar if(rates_total!=prev_calculated && bar==0) { STATE=state; BOX_TOP=box_top; BOX_BUTTOM=box_bottom; } switch(state) { case 1: box_top=high[bar]; if(symmetry)box_bottom=low[bar]; break; case 2: if(box_top lt =high[bar]) box_top=high[bar]; break; case 3: if(box_top gt high[bar]) box_bottom=low[bar]; else box_top=high[bar]; break; case 4: if(box_top gt high[bar]) {if(box_bottom gt = low[bar]) box_bottom=low[bar];} else box_top=high[bar]; break; case 5: if(box_top gt high[bar]) {if(box_bottom gt = low[bar]) box_bottom=low[bar];} else box_top=high[bar]; state=0; break; } UpperBuffer[bar] = box_top; LowerBuffer[bar] = box_bottom; state++; } //---- return(rates_total); } //+------------------------------------------------------------------+