Self Introduction

Personal Information

  • Name: OU YUXIAN LOUIS
  • Age: 20 years old
  • Occupation: Student

Education Background

  • University: JINAN University
  • Major: Finance
  • Degree: Bachelor's degree

Skills

  1. In the realm of finance, possessing a robust skill set is imperative for navigating the complexities of markets and making informed decisions. My proficiency encompasses a range of essential skills tailored to the finance domain.

  2. Financial Analysis stands as a cornerstone skill, enabling me to dissect financial statements, assess company performance, and evaluate investment opportunities. I've honed this skill through rigorous coursework and practical applications, gaining insights into the nuances of financial metrics and ratios.

  3. Investment Management constitutes another vital skill, allowing me to construct and optimize investment portfolios to meet diverse objectives. Through simulations and case studies, I've developed strategies to allocate assets effectively, manage risk, and maximize returns in varying market conditions.

  4. Risk Assessment is fundamental in mitigating potential losses and safeguarding investments. I've cultivated a keen understanding of different types of risk, including market risk, credit risk, and operational risk, employing quantitative techniques and qualitative analysis to assess and manage risk exposure.

  5. Financial Modeling serves as a powerful tool for decision-making, enabling me to simulate scenarios, forecast outcomes, and evaluate the financial viability of projects. I've mastered spreadsheet modeling techniques and valuation methodologies, adept at building dynamic models to support investment decisions and strategic planning.

Experience

  1. My journey in finance has been enriched by hands-on experience, providing invaluable insights and shaping my perspective on the intricacies of the financial landscape. During my internship at ABC Investment Firm, I immersed myself in real-world financial scenarios, assisting senior analysts in conducting market research, performing financial modeling, and drafting investment reports. This experience exposed me to the fast-paced environment of investment management, where precision and diligence are paramount. Participating in financial competitions and workshops has further augmented my experiential learning. Collaborating with peers, I've tackled challenging case studies, formulated investment strategies, and presented recommendations to industry professionals. These experiences have fostered teamwork, critical thinking, and effective communication skills essential for success in finance.

Interests

  • Programming
  • Reading science fiction novels
  • Playing basketball

Goals

My aspirations in finance extend beyond academic pursuits; they encompass a fervent desire to make meaningful contributions to the industry and realize my full potential as a finance professional.

In the short term, I aim to secure a position in investment management or financial analysis, leveraging my skills and experience to add value to reputable financial institutions. I aspire to immerse myself in dynamic environments that offer opportunities for growth, allowing me to refine my expertise and broaden my horizons.

Looking ahead, I envision myself assuming leadership roles where I can influence strategic decision-making, drive innovation, and inspire positive change within the finance sector. I aspire to become a trusted advisor, guiding organizations towards sustainable growth and prosperity while upholding ethical standards and societal responsibility.

Ultimately, my goal is to leave a lasting impact on the finance industry, contributing to its evolution and shaping its future trajectory. With dedication, perseverance, and a commitment to excellence, I am confident in my ability to achieve these aspirations and make a meaningful difference in the world of finance.

MY favorite Mathematical Formulas

\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.

Image

JNU LOGO JNU LOGO

Table

Subject Grade
Mathematics 90
Financial Accounting 95
English 85

Link of JNU

JNU Website

My favorite Code

  • Some basic financial metrics such as annual rate of return, compound interest, and future value
// Calculate annual return
function calculateAnnualReturn(initialValue, finalValue, years) {
    return ((finalValue / initialValue) ** (1/years)) - 1;
}

// Calculate future value
function calculateFutureValue(initialValue, annualRate, years) {
    return initialValue * ((1 + annualRate) ** years);
}

// Calculate compound interest
function calculateCompoundInterest(initialValue, annualRate, years) {
    return calculateFutureValue(initialValue, annualRate, years) - initialValue;
}

// Example usage
const initialValue = 1000; // Initial investment
const finalValue = 1500; // Final value
const years = 5; // Number of years

const annualReturn = calculateAnnualReturn(initialValue, finalValue, years);
console.log('Annual return:', (annualReturn * 100).toFixed(2) + '%');

const futureValue = calculateFutureValue(initialValue, annualReturn, years);
console.log('Future value:', futureValue.toFixed(2));

const compoundInterest = calculateCompoundInterest(initialValue, annualReturn, years);
console.log('Compound interest:', compoundInterest.toFixed(2));

  • calculating simple interest
// Calculate simple interest
function calculateSimpleInterest(principal, rate, time) {
    return (principal * rate * time) / 100;
}

// Example usage
const principal = 1000; // Principal amount
const rate = 5; // Annual interest rate (in percentage)
const time = 2; // Time period (in years)

const simpleInterest = calculateSimpleInterest(principal, rate, time);
console.log('Simple interest:', simpleInterest.toFixed(2));

That's my self-introduction. I hope to have further communication and collaboration with you!


本文章使用limfx的vscode插件快速发布