The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
49 views

Calculating volatility of a spread (with positive and negative values) in R

I am trying to using the TTR package and volatility() function in R to calculate the rolling 30 day volatility of a spread between two underlyings. Here is a stripped version of my code so far ...
0
votes
0answers
43 views

interpolating option volatility in R

I have a bunch of deltas and option implied vols at those deltas. I would like to interpolate them in R. I was thinking of simply doing the following: #first convert everything to moneyness type ...
7
votes
3answers
406 views

Cannot override a type with non-volatile upper bound

I have a compiler error in scala and I don't know what does it refer to: Assume these declarations:trait Abstract { type MyType } trait AInner trait A extends Abstract{ type MyType <: AInner } ...
2
votes
1answer
107 views

R: Assigning variable to quintile on monthly basis

I am trying in R to indicate in which quintile a value of a variable is for every month of my data frame in this case based on volatility. For each month I want to know for each stock if it is in the ...
0
votes
0answers
281 views

Maximum likelihood estimation for ARMA(1,1)-GARCH(1,1)

Following some standard textbooks on ARMA(1,1)-GARCH(1,1) (e.g. Ruey Tsay's Analysis of Financial Time Series), I try to write an R program to estimate the key parameters of an ARMA(1,1)-GARCH(1,1) ...
1
vote
1answer
173 views

Modelling volatility through the EWMA in R

In trying to model volatility through the Exponential Weighted Moving Average in R there is some package which has implemented yet this kind of fuction?
0
votes
1answer
70 views

where is python getting this build command from?

background I am installing volatility from this walkthrough. I am doing this on a windows 7 64 bit install and i have python 2.7 installed. I had cygwin installed months ago and removed it probably ...
0
votes
0answers
134 views

Implied Volatility Surface Chart

I'm learning C# programming. Currently, I need to plot an implied volatility surface on Visual Studio. Any open source library for plotting Surface chart? I've tried: Quantlib, is not free ...
0
votes
0answers
612 views

volatility forecasting using GARCH

I have the log returns of closing prices and am trying to use GARCH(1,1) model to forecast volatility of these log returns. So, far I have the following code, but I get incorrect values for my ...
0
votes
1answer
97 views

Computing Quadratic Variation in R

In order to compute the quadratic variation of a timeseries in R, I would like to to sum for every point the square of log returns of the current point and the last x points. I know that you can ...
4
votes
2answers
1k views

Simulation of GARCH in R

I am doing a simulation of a GARCH model. The model itself is not too relevant, what I would like to ask you is about optimizing the simulation in R. More than anything if you see any room for ...
-2
votes
1answer
116 views

One sided filter, online filtering, caual filtering

This is actually a repost of a question of mine from some weeks ago. I got good hints but I couldn't inf the perfect solution yet. I am looking for a Filter which just uses historic data for ...
4
votes
2answers
354 views

Parsing quotes in R: Quantmod application

I'm trying to create function that provides historical volatility after getting symbol from Yahoo. However, when I pass output to volatility function it doesn't like it; The Get variable gets assigned ...
3
votes
1answer
1k views

Using R to get volatility and Peak to avg. Ratio of internet traffic data

I have network traffic data in the following for for each hour of a ten day period as follows in a R dataset. Day Hour Volume Category 0 00 100 P2P ...
30
votes
3answers
4k views

reference assignment is atomic so why is Interlocked.Exchange(ref Object, Object) needed?

In my multithreaded asmx web service I had a class field _allData of my own type SystemData which consists of few List<T> and Dictionary<T> marked as volatile. The system data (_allData) ...
1
vote
5answers
1k views

How can I measure volatility?

I am trying to determine the volatility of a rank. More specifically, the rank can be from 1 to 16 over X data points (the number of data points varies with a maximum of 30). I'd like to be able to ...