File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 7
7
Optopsy is a nimble backtesting and statistics library for option strategies, it is designed to answer questions like
8
8
"How do vertical spreads perform on the SPX?" or "Which strikes and/or expiration dates should I choose to make the most potential profit?"
9
9
10
+ ** This library is currently being rewritten and is in beta state, use at your own risk**
11
+
10
12
## Supported Option Strategies
11
13
* Calls/Puts
12
14
* Straddles/Strangles (WIP)
Original file line number Diff line number Diff line change 1
1
# It is recommended to install Miniconda3 for Python 3.6.1 and Pandas
2
2
pandas >= 0.23.1
3
- enum34 ; python_version < = '2.7'
4
- pathlib2 ; python_version < = '2.7'
5
3
pytest >= 3.10.0
6
4
numpy >= 1.14.3
7
- pyprind >= 2.11.2
8
- psutil >= 5.4.8
Original file line number Diff line number Diff line change 5
5
description = "Python Backtesting library for options trading strategies" ,
6
6
long_description = open ("README.md" ).read (),
7
7
long_description_content_type = "text/markdown" ,
8
- version = "1 .0.4 " ,
8
+ version = "2 .0.0b1 " ,
9
9
url = "https://github.com/michaelchu/optopsy" ,
10
10
author = "Michael Chu" ,
11
11
16
16
"Programming Language :: Python :: 3.6" ,
17
17
],
18
18
packages = ["optopsy" ],
19
+ install_requires = [
20
+ 'pandas' ,
21
+ 'numpy'
22
+ ]
19
23
)
You can’t perform that action at this time.
0 commit comments