You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -35,23 +35,20 @@ the rapid development of complex options trading strategies.
35
35
* Spread delta
36
36
* Spread price
37
37
38
-
### Planned Features
39
-
* Indicator Support - Create entry and exit rules based on indicators
40
-
* Optimizer - Allows users to run multiple backtests with different combinations of parameters
41
-
* Option strategy support:
42
-
* Single Calls/Puts
43
-
* Vertical Spreads
44
-
* Iron Condors (Iron Butterflies)
45
-
* Covered Stock
46
-
* Combos (Synthetics/Collars)
47
-
* Diagonal Spreads
48
-
* Calendar Spreads
49
-
* Custom Spreads
50
-
* Strangles
51
-
* Straddles
38
+
### Option strategy support
39
+
* Single Calls/Puts
40
+
* Vertical Spreads
41
+
* (Coming Soon) Iron Condors (Iron Butterflies)
42
+
* (Coming Soon) Covered Stock
43
+
* (Coming Soon) Combos (Synthetics/Collars)
44
+
* (Coming Soon) Diagonal Spreads
45
+
* (Coming Soon) Calendar Spreads
46
+
* (Coming Soon) Custom Spreads
47
+
* (Coming Soon) Strangles
48
+
* (Coming Soon) Straddles
52
49
53
50
### Dependencies
54
-
You will need Python 3.6.x. It is recommended to install [Miniconda3](https://conda.io/miniconda.html). See [requirements.txt](https://github.com/michaelchu/optopsy/blob/master/requirements.txt) for full details.
51
+
You will need Python 3.6.x and Pandas 0.23.1 or newer. It is recommended to install [Miniconda3](https://conda.io/miniconda.html). See [requirements.txt](https://github.com/michaelchu/optopsy/blob/master/requirements.txt) for full details.
55
52
56
53
### Installation
57
54
```
@@ -69,7 +66,6 @@ In order to use it, you will need to define the struct variable to map the colum
69
66
First we import the library and other nessesary libaries:
70
67
```python
71
68
import optopsy as op
72
-
import os
73
69
from datetime import datetime
74
70
```
75
71
@@ -112,13 +108,9 @@ def run_strategy():
112
108
start = datetime(2016, 1, 1)
113
109
end = datetime(2016, 12, 31)
114
110
115
-
# create the option spread that matches the entry filters
111
+
# create the option spreads that matches the entry filters
0 commit comments