Multi Timeframe Indicators - page 1152
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Dear Mladen
ask you to add a time frame for the index with a copy (HISTO)
Thank you sir
Dear Mladen
ask you to add a time frame for the index with a copy (HISTO)
Thank you sir
Dragon
Slope direction line is just a renamed hull moving average . Use any of the existing multi time frame versions of hull average
Dragon
Slope direction line is just a renamed hull moving average . Use any of the existing multi time frame versions of hull average
can you make this also a MTF and can you display full values in its data window to enable easy coding
For what?
PS: please tell your coder to use the following indicator if he wishes to see some buffer of some indicator (even the hidden buffers). He shall see that all the buffers of any indicator (hidden or not, displayed r just used internally) are always accessible regardless if they are displayed in the data window
Dear mladen...
can you help me to make this "volume suite indicator" to MTF version in one separate window just like FFx CCI indicator
For what?
PS: please tell your coder to use the following indicator if he wishes to see some buffer of some indicator (even the hidden buffers). He shall see that all the buffers of any indicator (hidden or not, displayed r just used internally) are always accessible regardless if they are displayed in the data window
I understand, thanks for the explanation can you also make this indicator to display multi-time frame
Dear mladen...
can you help me to make this "volume suite indicator" to MTF version in one separate window just like FFx CCI indicator
Very nice indicator.
And having a multichart window like FFx CCI would be excellent.
But probably took original coder(s) many days to complete, would need the mq4 source for ffx_cci (or similar), and might be major surgery to change from CCI/price to add volume histograms. Probably makes sense to be done with the PVA Candles indicator as well.
Do you also have the PVA Candle indicator mq4?
If the multichart isn't feasible, I think a great start would be to make this indicator MTF? But how to represent higher TF volume?
Also, here is a minor fix to add to this single TF version of it.
Replace this (at line 312):
//Rising Volume
for(j = i+1; j <= i+10; j++) {av = av + Volume[j];}
av = av / 10;
With this:
//Rising Volume
if ((counted_bars==0) && (i >= limit-10)) continue; // ensure stay within array bounds on first call
for(j = i+1; j <= i+10; j++) {av = av + Volume[j];}
av = av / 10;
Dear Mladen
Possible Add Time Frame for the index in a modern way
With the abolition of the message, which appears in the chart
Thank you dear sir