Skip to content

Commit 7c5a3cc

Browse files
committed
Changed Name to FinancialToolbox
1 parent fcf9cb5 commit 7c5a3cc

9 files changed

+18
-18
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ git:
3131

3232
## uncomment the following lines to override the default test script
3333
#script:
34-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("FinancialModule"); Pkg.test("FinancialModule"; coverage=true)'
34+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("FinancialToolbox"); Pkg.test("FinancialToolbox"; coverage=true)'
3535
after_success:
3636
# push coverage results to Coveralls
37-
- julia -e 'cd(Pkg.dir("FinancialModule")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
37+
- julia -e 'cd(Pkg.dir("FinancialToolbox")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
3838
# push coverage results to Codecov
39-
- julia -e 'cd(Pkg.dir("FinancialModule")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
39+
- julia -e 'cd(Pkg.dir("FinancialToolbox")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The FinancialModule.jl package is licensed under the MIT "Expat" License:
1+
The FinancialToolbox.jl package is licensed under the MIT "Expat" License:
22

33
> Copyright (c) 2017: rcalxrc08.
44
>

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# FinancialModule
2-
[![Build Status](https://travis-ci.org/rcalxrc08/FinancialModule.jl.svg?branch=master)](https://travis-ci.org/rcalxrc08/FinancialModule.jl)
3-
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/147ulk4et2sim293?svg=true)](https://ci.appveyor.com/project/rcalxrc08/financialmodule-jl)
4-
[![codecov](https://codecov.io/gh/rcalxrc08/FinancialModule.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/rcalxrc08/FinancialModule.jl?branch=master)
1+
# FinancialToolbox
2+
[![Build Status](https://travis-ci.org/rcalxrc08/FinancialToolbox.jl.svg?branch=master)](https://travis-ci.org/rcalxrc08/FinancialToolbox.jl)
3+
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/147ulk4et2sim293?svg=true)](https://ci.appveyor.com/project/rcalxrc08/FinancialToolbox-jl)
4+
[![codecov](https://codecov.io/gh/rcalxrc08/FinancialToolbox.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/rcalxrc08/FinancialToolbox.jl?branch=master)
55
##### This is a Julia package containing some useful Financial function for Pricing and Risk Management under the Black and Scholes Model.
66
###### The syntax is the same of the Matlab Financial Toolbox.
77
It currently contains the following functions:
@@ -30,20 +30,20 @@ The module is standalone.
3030
## How to Install
3131
To install the package simply type on the Julia REPL the following:
3232
```Julia
33-
Pkg.clone("https://github.com/rcalxrc08/FinancialModule.jl.git")
33+
Pkg.clone("https://github.com/rcalxrc08/FinancialToolbox.jl.git")
3434
```
3535
## How to Test
3636
After the installation, to test the package type on the Julia REPL the following:
3737
```Julia
38-
Pkg.test("FinancialModule")
38+
Pkg.test("FinancialToolbox")
3939
```
4040
## Example of Usage
4141
The following example is the pricing of a European Call Option with underlying varying
4242
according to the Black Scholes Model, given the implied volatility.
4343
After that it is possible to check the result computing the inverse of the Black Scholes formula.
4444
```Julia
4545
#Import the Package
46-
using FinancialModule
46+
using FinancialToolbox
4747

4848
#Define input data
4949
spot=10;K=10;r=0.02;T=2.0=0.2;d=0.01;

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ build_script:
4040
# Need to convert from shallow to complete for Pkg.clone to work
4141
- IF EXIST .git\shallow (git fetch --unshallow)
4242
- C:\projects\julia\bin\julia --color=yes -e "versioninfo();
43-
Pkg.clone(pwd(), \"FinancialModule\"); Pkg.build(\"FinancialModule\")"
43+
Pkg.clone(pwd(), \"FinancialToolbox\"); Pkg.build(\"FinancialToolbox\")"
4444

4545
test_script:
46-
- C:\projects\julia\bin\julia -e "Pkg.test(\"FinancialModule\")"
46+
- C:\projects\julia\bin\julia -e "Pkg.test(\"FinancialToolbox\")"

src/FinancialToolbox.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__precompile__()
2-
module FinancialModule
2+
module FinancialToolbox
33

44
if (VERSION.major==0&&VERSION.minor>=6)
55
using SpecialFunctions.erf

test/testComplexNumbers.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Base.Test
2-
using FinancialModule
2+
using FinancialToolbox
33

44
print_with_color(:green,"Starting Complex Number Test\n")
55

test/testDualNumbers.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Base.Test
2-
using FinancialModule
2+
using FinancialToolbox
33

44
print_with_color(:green,"Starting Dual Numbers Test\n")
55

test/testHyperDualNumbers.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Base.Test
2-
using FinancialModule
2+
using FinancialToolbox
33

44
print_with_color(:green,"Starting Hyper Dual Numbers Test\n")
55

test/testRealNumbers.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using Base.Test
2-
using FinancialModule
2+
using FinancialToolbox
33

44
#Test Parameters
55
testToll=1e-14;

0 commit comments

Comments
 (0)