Skip to content

A python library that consists of modules for different types of financial calculations and analysis.

License

Notifications You must be signed in to change notification settings

sris-spec/FinanceLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 

Repository files navigation

FinanceLib

Package Overview

FinanceLib is easy-to-use Python library that has modules for representing the visualisations and analysis of commonly used finance related terms through graphs and charts.

Table of Contents

Usage

This module can be used for the below given puposes:

  • Calculating the interest earned over the amount deposited.
  • Representation of change of Interest,Balance with respect to years through line or bar graphs.
  • Representation of ratios between Deposit and interest applied over it through pie chart.
  • Calculating and visualisition of Relative stock index.
  • Measures and visualizes the Volatility of a Stock

Modules Included

This Library mainly consists of three modules , namely :

This module is further subdivided into two very important stock analysis fuctions which are widely used in financial risk management.

  • Relative Strength Index (Function name - rsi)
  • Volatility (Function name - volatility)

Sample Code

import FinanceLib.analysis as anl
anl.rsi('GOOG','Google','2020,01,01') 

This module is further subdivided into two most commonly used finance terms namely,

  • Equated Monthly Interest (Function name - EMI)
    • Fixed Deposit (Function name - FD)

Sample Code

import FinanceLib.genBanking as gen
gen.EMI(500000,10.5,2)

This module is further subdivided into two basic interests calculations which are widely used and are the building blocks of any financial calculations.

  • Simple Interest (Function name - simple_interest)
  • Compound Interest (Function name - compound_interest)

Sample Code

import FinanceLib.interest as inter
inter.simple_interest(5000,5.5,5)

Package Structure

FinanceLib
    __init__.py
    analysis.py
    genBanking.py
    interest.py

Installation

pip install FinanceLib

Licence

All the codes included in this packaging library is licensed under MIT License.

About

A python library that consists of modules for different types of financial calculations and analysis.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •  

Languages