Skip to content
View radusbriciu's full-sized avatar
🌍
🌍

Block or report radusbriciu

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
radusbriciu/README.md

About Me

Radu Briciu

Hi, I"m Radu Briciu, a postgraduate student in Quantitative Finance at Bayes Business School, City, University of London.

I am passionate about computational methods in finance, currently seeking collaborative research around topics in analytical securities pricing, financial econometrics, and behavioural finance.

Email me: City, University of London

Academic Interests

  • Primary Discipline: Economics, Econometrics and Finance
  • Focus Areas: Financial modelling, quantitative methods, and econometric analysis

recurisve command line tools

recursive git status powershell

Get-ChildItem -Directory -Recurse | ForEach-Object { 
    if (Test-Path "$($_.FullName)\.git") { 
        Write-Host "Directory: $($_.FullName)"
        git -C $_.FullName status
        Write-Host "`n"
    }
}

recursive pip install powershell

Get-ChildItem -Directory | ForEach-Object {
    if ((Test-Path "$($_.FullName)\setup.py") -or (Test-Path "$($_.FullName)\pyproject.toml")) {
        Push-Location $_.FullName
        pip install .
        Pop-Location
    }
}

recursive git status bash

find . -type d -name ".git" -execdir sh -c "echo "Directory: $(pwd)"; git status; echo """ \;

recursive pip install .sh

#!/bin/bash

# Loop through each subdirectory
for dir in */; do
    # Check if setup.py or pyproject.toml exists in the subdirectory
    if [[ -f "${dir}setup.py" || -f "${dir}pyproject.toml" ]]; then
        echo "Installing package in $dir"
        # Change to the directory, install, and then return to the original directory
        (cd "$dir" && pip install .)
    else
        echo "No installable package found in $dir"
    fi
done

Pinned Loading

  1. machine-learning-option-pricing machine-learning-option-pricing Public

    An empirical approach based on market data

    Jupyter Notebook 2

  2. convsklearn convsklearn Public

    convenience wrappers for scikit sklearn

    Python 1

  3. quantlib_pricers quantlib_pricers Public

    Python 1

  4. realised-volatility realised-volatility Public

    The works of a statistical enquiry into the measurement of realised volatility

    Jupyter Notebook 1

  5. Optimisation-and-the-Efficient-Frontier Optimisation-and-the-Efficient-Frontier Public

    Python 1

  6. pcrm-book pcrm-book Public

    Forked from fortitudo-tech/pcrm-book

    Repository for the Portfolio Construction and Risk Management book"s Python code.

    Jupyter Notebook