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
I found another indicator for this, but I have no clue as to where it is. I do know it came from Russia and that Rosh was the author, so perhaps ND can help you find it.
Hvr
I am a new bie. Since HVR is coded. Can some expert help to code Landry Dave Bow tie?
Bestregards,
Karter1189
Hvr
Historical volatility ratio
Faster and correct
Indicator at post #7 has an error in it :
this part of code
hv100 = 0;
for (i = 0; i<=99; i++)
{
hv100 = hv100 + (x100 - mean100)*(x100 - mean100);
}
hv100 = MathSqrt(hv100/99)*7.211102550927978586238442534941; [/php]should be like this
[php]hv6 = MathSqrt(hv6/6)*7.211102550927978586238442534941;
hv100 = 0;
for (i = 0; i<=99; i++)
{
hv100 = hv100 + (x100 - mean100)*(x100 - mean100);
}
hv100 = MathSqrt(hv100/100)*7.211102550927978586238442534941;Hvr
Hi,
Can somebody write the indicator using HVR indicator and add alert when the HVR cross above 0.55 mark from below.
Thanks,
Karter