Does anyone know of any courses etc for teaching people how to learn how to apply technical analysis and trading mechanics to the development of an automated trading algorithm?
Is there a quick way (e.g. tool) to detect, from the source (or maybe even from compiled classes), which parts of an application call Java API methods that are only implemented in a specific Java version? (e.g. which parts of my app are…
Anyone knows how to take advantage of ggplot or lattice in doing survival analysis? It would be nice to do a trellis or facet-like survival graphs.
So in the end I played around and sort of found a solution for a Kaplan-Meier plot. I apologize for…
Here is some code for an integer variable n:
while (n > 0)
{
n = n/10; // Use integer division
}
I am trying to find the worst-case time analysis for this loop. O(n) is new to me and I am having difficulty with…
I was wondering if anyone out there has found a nice package for R to analyse eye-tracking data?
I came across eyetrackR but as far as I can tell there is no English support documentation…
In many cases being aware of missing data is crucial and ignoring them can seriously impair your analysis.
Therefore I'd like to set the useNA = "ifany" as default for table(). Ideally similar to options(stringsAsFactors = FALSE)
I found an ugly…
So I am trying to solve the problem 1772 of the Caribbean online judge web page http://coj.uci.cu/24h/problem.xhtml?abb=1772, the problem asks to find if a substring of a bigger string contains at least one palindrome inside it:
e.g. Analyzing the…
I am comparing two algorithms, Prim's and Kruskal's.
I understand the basic concept of time complexity and when the two work best (sparse/dense graphs)
I found this on the Internet, but I am struggling to convert it to English.
dense graph: Prim =…
I have few questions related to iis logs:
1)I have noticed many iis logs contain the same information but row are duplicated, why is it so?
2)For the same cookie in some rows Asp.net sessionID remain missing. For example if there are 5 rows for the…
My Computer Science II final is tomorrow, and I need some help understanding how to find the Big-Oh for segments of code. I've searched the internet and haven't been able to find any examples of how I need to understand it.
Here's a problem from our…
Before everything became "enterprise", there was a time, when everything was "structured". About 20 years ago structured analysis and structured design (SADT), together with CASE tools promised salvation to many IT proferssionals.
While the hype…
We are trying to install a CI Platform with (Jenkins,sonar,eclipse ...).
So that every developer can make analysis on his code before commit, I'm wondering between two alternatives :
running local analysis with the sonar plugin.
install the…
I have a correlation matrix and when I try to run a maximum-likelihood factor analysis on it using the "factanal" function I get the following error:
factanal(covmat=matches_adjusted, factors=5, rotation=none, na.omit(matches_adjusted))
Warning in…
I have some h264 video in mpeg transport stream, and I suspect at certain points in the video it switches from 1080i/50Hz to 1080p/25Hz. I'd like to prove that using some video analysis tool. Can ffmpeg (or similar) print out such detailed decoding…
If an algorithm has two sub algorithm, when it is best case for sub algorithm A1 to the given input, it is the worst case for sub algorithm A2. How could I find the overall algorithm complexity?
Simply I mean Ω(N) + O(N)=?
I know if the algorithms…