Serving the Quantitative Finance Community

Search found 6 matches

by CanDo
July 30th, 2013, 7:56 am
Forum: Programming and Software Forum
Topic: How to implement arithmetic of 'returns'
Replies: 9
Views: 8461

How to implement arithmetic of 'returns'

Thanks, Jim. I think a combination of caching the values and using some sort of throttling (updating threshold) will probably do the trick. I am new to trading and have a limited exposure to programming and wanted to confirm if there was a more elegant and/or obscure way the pros. would do it.
by CanDo
July 20th, 2013, 6:16 pm
Forum: Student Forum
Topic: Orthogonalized Stock Returns Intraday
Replies: 5
Views: 8066

Orthogonalized Stock Returns Intraday

<t>How would one code this concept? I am not sure about how the returns and their arithmetic is implemented. The formula I am trying to implement is something like Z = Return (stock) - beta1*Return (market) - beta2 * Return (sector). Assuming stock is APPL, market is SPY and sector is IYT and beta v...
by CanDo
July 19th, 2013, 7:00 am
Forum: Programming and Software Forum
Topic: How to implement arithmetic of 'returns'
Replies: 9
Views: 8461

How to implement arithmetic of 'returns'

<t>Hello expert programmers,I am trying my hand at writing a code to implement a trading formula. But I am not sure about how the returns and their arithmetic is implemented. The formula I am trying to implement is something like Z = Return (stock) - beta1*Return (market) - beta2 * Return (sector). ...
by CanDo
June 21st, 2013, 4:32 pm
Forum: Student Forum
Topic: Orthogonalized Stock Returns Intraday
Replies: 5
Views: 8066

Orthogonalized Stock Returns Intraday

That makes sense. Thanks a lot, Alan!
by CanDo
June 21st, 2013, 2:57 pm
Forum: Student Forum
Topic: Orthogonalized Stock Returns Intraday
Replies: 5
Views: 8066

Orthogonalized Stock Returns Intraday

<t>Thanks, Alan. But I think there would be collinearity issue with putting those two variables as explanatory variables. I think I can overcome that issue by doing the same thing as you suggested but doing it in two steps.I am trying to implement a model that would publish the ortho. returns. So, t...
by CanDo
June 21st, 2013, 8:44 am
Forum: Student Forum
Topic: Orthogonalized Stock Returns Intraday
Replies: 5
Views: 8066

Orthogonalized Stock Returns Intraday

<t>Hello,I am trying to do real-time analysis for myself and I need suggestions finding the stock returns orthogonalized by returns of two other ETFs - SPY and FXC. I am trying to do generate this signal intraday for extracting that excludes (is orthogonal to) the intraday moves in these (or any oth...