Page 56 of 98

Re: Volume Indicators for MT4

Posted: Mon Oct 31, 2022 2:59 am
by Chickenspicy
mntiwana wrote: Sun Oct 15, 2017 12:15 pm As already told they are of many sorts dont know which one you requiring
Have you tried Buy Sell volume 2 mtf and Volume_MTF versions
system name m7?

Re: Volume Indicators for MT4

Posted: Mon Oct 31, 2022 3:14 am
by Ogee
chickensword wrote: Mon Oct 31, 2022 2:59 am system name m7?
Hi, don't think you are going to get a rely for a post from 2017 from someone not logged on for over a year but there is no system, they are talking of the 'buy sell volume 2' indicator found here,


attach/file/3379904?&sid=438a09da18c31b ... 858714111e

Re: Volume Indicators for MT4

Posted: Tue Nov 15, 2022 2:37 pm
by mrtools
Someone was asking for a one more average smoothed Mfi can't remember who and can't find the post, so hopefully they will see it here.

Re: Volume Indicators for MT4

Posted: Tue Nov 15, 2022 3:51 pm
by vvFish
mrtools wrote: Tue Nov 15, 2022 2:37 pm Someone was asking for a one more average smoothed Mfi can't remember who and can't find the post, so hopefully they will see it here.
Image
;)

Re: Volume Indicators for MT4

Posted: Fri Dec 02, 2022 2:02 am
by hernandez
Good evening guys, could someone help me adding a moving average of the volumes inside this code snippet using this code structure? Thank you

Code: Select all

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 limit = rates_total - prev_calculated;
   if(prev_calculated > 0) limit++;
   for(int i=limit-1; i>=0; i--)
   {

      // Here I would like to add moving average with specific period and save values to buffer
      
      shortVolumeBuffer[i] = EMPTY_VALUE;
      longVolumeBuffer[i] = EMPTY_VALUE;
      if(close[i] >= open[i])
         longVolumeBuffer[i] = (double)tick_volume[i];
      if(close[i] < open[i])
         shortVolumeBuffer[i] = (double)tick_volume[i];
   }
   return(rates_total);
  }
//+------------------------------------------------------------------+

Re: Volume Indicators for MT4

Posted: Fri Dec 02, 2022 10:12 pm
by sylvester21
Hi fellow friends,

I need your help to suggest a volume/volatility indicator.

I'm currently using TDFIX with eAverages by Kvak and Mr Tools, which i feel is great, but I'm looking for other alternatives).

The criteria as follows:
Gives definite signal through color changes (Green for long, Red for short, and no color for no volume/dead market) , or a zero cross indicator.

I have tried Damiani Volatmeter and Waddah Explosion, but somehow they are prone to noises and fake signals.

I don't prefer histograms as the interpretation of the data is very subjective. Prefer a Volume/Volatility indi that gives definite go/no go signals. Something that i can use to make definite decision to place trade or stay out (from dead markets).

Thanks!

Re: Volume Indicators for MT4

Posted: Sat Dec 03, 2022 11:46 pm
by Ogee
sylvester21 wrote: Fri Dec 02, 2022 10:12 pm Hi fellow friends,

I need your help to suggest a volume/volatility indicator.

I'm currently using TDFIX with eAverages by Kvak and Mr Tools, which i feel is great, but I'm looking for other alternatives).

The criteria as follows:
Gives definite signal through color changes (Green for long, Red for short, and no color for no volume/dead market) , or a zero cross indicator.

I have tried Damiani Volatmeter and Waddah Explosion, but somehow they are prone to noises and fake signals.

I don't prefer histograms as the interpretation of the data is very subjective. Prefer a Volume/Volatility indi that gives definite go/no go signals. Something that i can use to make definite decision to place trade or stay out (from dead markets).

Thanks!
That's asking a lot from a single indicator but you might take a look at Price Volume Analysis such as these.





Re: Volume Indicators for MT4

Posted: Sun Dec 04, 2022 12:24 am
by sal
Ogee wrote: Sat Dec 03, 2022 11:46 pm That's asking a lot from a single indicator but you might take a look at Price Volume Analysis such as these.


Sonic_2 PVA Candles (Black).mq4



Sonic_6 PVA Volumes (Black).mq4


NICE...
How to read , please explain for get better idea !

Image

Re: Volume Indicators for MT4

Posted: Sun Dec 04, 2022 12:40 am
by Ogee
sal wrote: Sun Dec 04, 2022 12:24 am




'Complete Guide To Volume Price Analysis: Anna Coulling' pdf

attach/file/3373889



edit; realise that might not be helpful if you need to put through google translate.


This indicator is coded to run on MT4 Build 600.

This indicator creates standard volume bars to be used together with the SonicR PVA Candles
indicator. Special colors are used denote candles and corresponding volume bars where special
situations occur involving price and volume, hence PVA (Price-Volume Analysis). The special
situations, or requirements for the colors are as follows.

Situation "Climax"
Bars with volume >= 200% of the average volume of the 10 most recent previous chart TFs,
and bars where the product of candle spread x candle volume is >= the highest for the 10
most recent previous chart time TFs. Bull bars are green and bear bars are red.

Situation "Volume Rising Above Average"
Bars with volume >= 150% of the average volume of the 10 most recent previous chart TFs.
Bull bars are blue and bear are blue-violet.

Setting the Volume Alert-
This indicator includes the sound with text alert that will trigger once per TF at the first
qualification of the volume bar as a "Climax" volume situation. Set "Volume_Alert_On" to
"true" to activate the alert. You can use your "Broker_Name_In_Alert" so that your broker
name so it will appear in the on-screen alert tile. This helps to avoid confusion if you
simultaneously use multiple platforms from different brokers.

Re: Volume Indicators for MT4

Posted: Thu Dec 08, 2022 1:56 pm
by sylvester21
Dear KVak and MrTools,

Can you kindly look into this indi, and help to modify the FastMode and SlowMode with proper Averages naming?
Can you also help to integrate latest eAverages pack into this indi?

Thanks!