Elite indicators :) - page 1504

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
Add following line to the start of Init() wherever that happens :
Thanks a lot for quick response and its working now,
Cheers
Here is the histo version too : stepma_pdf_4_4_histo.ex4
Dear Mladen,
This indicator is giving a "rename error" and it is not working.
Could you fix it if possible?
Best regards.
(stepma_pdf_4_4_histo.ex4)
Dear Mladen,
This indicator is giving a "rename error" and it is not working.
Could you fix it if possible?
Best regards.
(stepma_pdf_4_4_histo.ex4)
Save it as "stepma pdf 4_4 histo.ex4" and it will work
Yes it worked!
Thank you very much :)
PS:
I've done it this way before, but it did not work.
"stepma pdf 4.4 histo.ex4"
Save it as "stepma pdf 4_4 histo.ex4" and it will work
Dear Mladen
I renamed the attachment indicator as you suggested, but it did not work stubbornly!
Also I have tried many rename alternatives but result negative!
If possible could you fix it please?
That would be this one :
It was made a long time ago, this version is the newest version - the one from your picture looks like one of the first versions
Hi Mladen,
Is this indicator repaint or not?
Hi friends and dear Mladen,
I found this "finite volume elements (fve)" indicator for a few platforms but not for metatrader:
Would it be possible to code this indicator for metatrader?
I tried to convert it but failed.
This is the code I found:
study(title="Volatility Finite Volume Elements", shorttitle="FVI")
Samples = input(22, minval=1)
Perma = input(40, minval=1)
Cintra = input(0.1)
Cinter = input(0.1)
xhl2 = hl2
xhlc3 = hlc3
xClose = close
xIntra = log(high) - log(low)
xInter = log(xhlc3) - log(xhlc3[1])
xStDevIntra = stdev(sma(xIntra, Samples) , Samples)
xStDevInter = stdev(sma(xInter, Samples) , Samples)
xVolume = volume
TP = xhlc3
TP1 = xhlc3[1]
Intra = xIntra
Vintra = xStDevIntra
Inter = xInter
Vinter = xStDevInter
CutOff = Cintra * Vintra + Cinter * Vinter
MF = xClose - xhl2 + TP - TP1
FveFactor = iff(MF > CutOff * xClose, 1,
iff(MF < -1 * CutOff * xClose, -1, 0))
xVolumePlusMinus = xVolume * FveFactor
Fvesum = sum(xVolumePlusMinus, Samples)
VolSum = sum(xVolume, Samples)
xFVE = (Fvesum / VolSum) * 100
xEMAFVE = ema(xFVE, Perma)
plot(xFVE, color=green, title="FVI")
plot(xEMAFVE, color=blue, title="FVI EMA"
Thank you.