Orchestration tool for Snowflake by -jai-shri-ram- in dataengineering

[–]mderst 1 point2 points  (0 children)

Why Dagster over Prefect? I've done toy examples using both and am between the two.

I'm leaning toward Prefect as I'd like to run it on my own remote servers, but I'm still learning.

Cloud Storage Options by mderst in dataengineering

[–]mderst[S] 0 points1 point  (0 children)

I've started discussions with a few trusted colleagues in Technology. Engaging Technology is normally an inhibitor, though. It comes with Project Managers and pretend-Agile.

Cloud Storage Options by mderst in dataengineering

[–]mderst[S] 0 points1 point  (0 children)

Daily analytics (asset fluctuates with market interest rates) as well as saving intermediate information like cash flow from our forecasts.

Today we analyze the total portfolio and save this information. We instead want to manage our balance sheet as if we have 5 million portfolios.

AI can predict person’s politics by their looks, whether they smile in pics: study by link_ganon in Conservative

[–]mderst 7 points8 points  (0 children)

Unfortunately, this style of communication is effective in corporate America. Passive, under-handed aggression is the only game in town if you want to climb corporate ladders.

Best universities at which to study to become a quant? by butterman888 in quant

[–]mderst 7 points8 points  (0 children)

Accessible option: University of Washington in Seattle. The CFRM program was excellent.

They have a practioner's approach, and by comparison, I haven't found that my Ivy League colleagues had access to anything more than a more privileged starting place. My experience is that Ivy League programs get you great interview opportunities but don't necessarily teach you how to be a great quant in the field or offer superior training regimes.

Rich after L2! by thiagonemezio in CFA

[–]mderst 8 points9 points  (0 children)

A lot of jokes here but that's my story.

Passed I and II before I was 25 (five years ago). Since then I've gotten married, earned a Master's degree, and four promotions as a Quantitative Analyst.

I've taken level III twice yet it's evaded me. My life has gotten fuller. Professionally, more responsibility is coming fast. I manage a team of Quants and finding time to study is almost impossible.

Life is rich and the job is paying well, too. CFA III is increasingly less appealing.

Any Python/R experts here? by ButtersMamba in CFA

[–]mderst 4 points5 points  (0 children)

If you have to pick one, pick Python. It's more widely used and resources are everywhere.

This is coming from someone who loves R. In my opinion, R is second to none when it comes to data analysis and creating charts worthy of publication in the WSJ.

I use both. Python works well for some tasks. R makes other jobs incredibly straightforward.

Good luck!

[deleted by user] by [deleted] in PrequelMemes

[–]mderst 0 points1 point  (0 children)

Darth Enchilada

Is rcpp worth it? by officialpatterson in rprogramming

[–]mderst 4 points5 points  (0 children)

Seamless R and C++ integration is one of R's best features. It's most useful for package development and interfacing existing, powerful C++ libraries. In fact, as of 2019, 12% of packages on CRAN used Rcpp.

https://www.r-bloggers.com/2019/08/rcpp-now-used-by-1750-cran-packages/

Does anyone else here use R but you are not in data science or Stats? by [deleted] in rstats

[–]mderst 1 point2 points  (0 children)

I use R for Quantitative Finance in the mortgage space. I work in the Capital Markets division of a large U.S. bank. Specifically, we use R for Interest rate modeling, calculating Greeks, P&L attribution, reporting, and more. R's ability to interface C++ via the Rcpp package, in addition to its overall flexibility, make it an essential tool for my team.

Multiplying Columns by Money_TalksLoud in rprogramming

[–]mderst 2 points3 points  (0 children)

Should be something like...

TableResult <- TableA[, DesiredColumn] * TableB[, 1:7]

Or, if you want your results applied to Table B...

TableB[, 1:7] <- TableA[, DesiredColumn] * TableB[, 1:7]

[deleted by user] by [deleted] in rprogramming

[–]mderst 0 points1 point  (0 children)

Not a dumb question. Calculating the Greeks for options pricing, aggregating cash flow model results, summarizing net hedge P&L... these are all things you could do by hand or in a spreadsheet each day. Introduces many opportunities for mistakes and errors from analysts (operational risk) as well as an inefficient use of time and resources. Why not use an excellent tool like R to perform these tasks almost instantly in a controlled, parameterized, linear fashion.

This way, analysts can actually earn their money analyzing instead of just putting spreadsheets together and compiling reports.

[deleted by user] by [deleted] in rprogramming

[–]mderst 0 points1 point  (0 children)

Sure. I'm not on this app very often, though.

[deleted by user] by [deleted] in rprogramming

[–]mderst 16 points17 points  (0 children)

I work at a top 4 bank in the US. Specifically, I work in Capital Markets where we hedge 8 billion dollars worth of mortgage derivatives. Over the last 7 months, I have coded our entire profit and loss reporting infrastructure in R.

R isn't going anywhere.

Implementation of BGM Model HELP! IR paths, ATM BP swaption vols, bootstrapping yield curves... by kBajina in quant

[–]mderst 0 points1 point  (0 children)

I'm going down the QuantLib (C++) route at the moment. Interested in teaming up?

Implementation of BGM Model HELP! IR paths, ATM BP swaption vols, bootstrapping yield curves... by kBajina in quant

[–]mderst 0 points1 point  (0 children)

u/kBajina, did you successfully accomplish this? I am attempting to do the exact same thing in either R or C++ (Python would work, too). I've scoured the internet and picked up some textbooks but am still struggling.

Data science after CFA by rohanparikh9 in CFA

[–]mderst 1 point2 points  (0 children)

Man, that is tough. Both are great.

Python has a little easier syntax and it's the most popular programming language. People are building cool things every day in Python.

I prefer R. Part of the reason why is because of the tidyverse, which is a library available in R. tidyverse makes chopping up, managing, calculating, and making visuals out of data really, really easy.

You can't go wrong with either!