system name m7?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
Re: Volume Indicators for MT4
552Hi, 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
- These users thanked the author Ogee for the post:
- Chickenspicy
Re: Volume Indicators for MT4
553Someone 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.
- These users thanked the author mrtools for the post (total 7):
- vvFish, josi, Jimmy, ParallelNative, Chickenspicy, Milad8732, pipsquirrel
Shalom Shalom! 
Re: Volume Indicators for MT4
554mrtools 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.
- These users thanked the author vvFish for the post (total 2):
- Jimmy, Chickenspicy
"Only the price on the chart can show the entrance to the deal..."
Re: Volume Indicators for MT4
555Good 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
556Hi 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!
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
557That's asking a lot from a single indicator but you might take a look at Price Volume Analysis such as these.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!
- These users thanked the author Ogee for the post:
- sylvester21
Re: Volume Indicators for MT4
558Ogee 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 !
- These users thanked the author sal for the post:
- sylvester21
"There is NO GOD higher than TRUTH" - Mahatma Gandhi
Re: Volume Indicators for MT4
559'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.
- These users thanked the author Ogee for the post (total 2):
- sylvester21, sal
Re: Volume Indicators for MT4
560Dear 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!
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!