Better Volume Indicator For MT5

Better Volume Indicator For MT5

Better Volume Indicator For MT5 तकनीकी व्यापारियों के उपयोगकर्ताओं के रूप में जाना जाता है। यह प्रमुख प्रवृत्ति के विश्लेषण के लिए एसएमए डेटा के साथ वॉल्यूम संकेतक के एल्गोरिथ्म का उपयोग करता है। जो लोग इस मैनुअल ट्रेडिंग पद्धति पर भरोसा करते हैं, उन्हें इस उपकरण के साथ बहुत फायदा हो सकता है क्योंकि यह उच्च स्तर के साथ मूल्य प्रवृत्ति दिखा सकता है।

जब तक कीमत उत्तर में जा रही है, तब तक आप संकेतक फ्रेम में लगातार हरे रंग की सलाखों का अनुभव करने जा रहे हैं। इसके विपरीत, लगातार लाल पट्टियों को संकेतक फ्रेम में मुद्रित किया जा रहा है जब तक कि विक्रेता मूल्य को दक्षिण में धकेल रहे हैं। आपको महत्वपूर्ण आपूर्ति या प्रतिरोध स्तर में अपना ऑर्डर सेटअप ढूंढना होगा और फिर संकेतक की पट्टी का उपयोग करना चाहिए।

लेकिन सुनिश्चित करें कि आप इस टूल के साथ कुछ और वॉल्यूम इंडिकेटर्स का उपयोग करके चार्ट को गड़बड़ नहीं कर रहे हैं। चीजों को सरल रखें और डी 1 फ्रेम में सलाखों से संबंधित करें। अगर शुरुआत में चीजें कठिन लगती हैं तो अभ्यास खाते का उपयोग करें।

FREE Better Volume Indicator

Download the FREE Better Volume 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

 

Better Volume Indicator For MT5 स्थापित करना

आपके द्वारा उपर्युक्त फ़ॉर्म के माध्यम से संकेतक डाउनलोड करने के बाद आपको ज़िप-फ़ाइल को अनज़िप करना होगा। तो फिर तुम फाइल कॉपी करने की जरूरत है Minions.BetterVolume.mq5 फ़ोल्डर में MQL5Indicators अपने की MT5 स्थापना। उसके बाद कृपया MT5 को पुनः आरंभ करें और फिर आप संकेतक की सूची में संकेतक देख पाएंगे।

Better Volume Indicator For MT5 पैरामीटर

Better Volume Indicator For MT5 पास कॉन्फ़िगर करने के लिए 2 पैरामीटर हैं।

input ENUM_APPLIED_VOLUME inpAppliedVolume  = VOLUME_REAL; // Volume Type
input int                 inpBarsToAnalyze  =  20;         // N past bars to analyze

Better Volume Indicator For MT5 के Better Volume Indicator For MT5

Better Volume Indicator For MT5 2 बफ़र्स प्रदान करता है।

SetIndexBuffer( 0, bufferVolume, INDICATOR_DATA );
SetIndexBuffer( 1, bufferColors, INDICATOR_COLOR_INDEX );

संहिता के मुख्य भाग

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[])
    {
    int   start=prev_calculated-1;
    long  SMA;

    if (rates_total lt 2)  {  return(0);  }     // check for rates total

    if (start lt 1) {  start=1;  }              // correct position

    // calculates the volumes histogram...
    for(int i=start; i lt rates_total && !IsStopped(); i++) {

        bufferVolume[i] = (double)(paramAppliedVolume==VOLUME_REAL  ?  volume[i]  :  tick_volume[i]);     // calculates the indicator...

        if(paramAppliedVolume==VOLUME_REAL) {
            SMA = SMAOnArray(volume, paramBarsToAnalyze, i );
        } else {
            SMA = SMAOnArray(tick_volume, paramBarsToAnalyze, i );
        }
        
        // change candle colors accordingly...
        if      (open[i] lt close[i] && bufferVolume[i] gt SMA) {  bufferColors[i]=1.0;  } 
        else if (open[i] gt close[i] && bufferVolume[i] gt SMA) {  bufferColors[i]=2.0;  }
        else                                              {  bufferColors[i]=0.0;  }
    
    }

    return(rates_total);
  }





//+------------------------------------------------------------------+
//| Calculates a SMA over an indicator array...                      |
//+------------------------------------------------------------------+
long SMAOnArray( const long &array[], int period, int position ) {
    long sum = 0;

    if (position-period  lt = 0)  {  return false;  }

    for (int i = position-period+1; i lt =position; i++) {
        sum += array[i];
    }

    return sum / period;
}
//+------------------------------------------------------------------+

 

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.