Skip to content

Commit

Permalink
final touches.
Browse files Browse the repository at this point in the history
  • Loading branch information
westonplatter committed Oct 7, 2018
1 parent 1a0c37d commit cbb50b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Here's what you can do with `fast_arrow` (some features still in development)
- [ ] generate option strategy orders
- [x] single ([example](examples/option_order_place_single.py))
- [x] verticals ([example](examples/option_order_place_vertical.py))
- [ ] iron condors
- [x] iron condors ([example](examples/option_order_place_iron_condor.py))
- [ ] calendars
- [ ] diagonals
- [ ] generate humanized names for option strategies
Expand All @@ -101,9 +101,9 @@ Here's what you can do with `fast_arrow` (some features still in development)
- [x] handle standard Login/Logout flow [example](examples/auth.py)
- [x] handle MFA token during login [example](examples/auth_mfa.py)
- [x] pin SSL certificate (see [this PR](https://github.com/westonplatter/fast_arrow/pull/35))
- [x] implments oauth2 automatic refresh
- [x] automatically refreshes oauth2

__Want to propose a feature? Pull request changes to the readme.__
__Want to propose a feature?__ [Open a feature request](https://github.com/westonplatter/fast_arrow/issues/new/choose) or open a Pull Request.


## development
Expand Down
2 changes: 1 addition & 1 deletion examples/option_order_place_iron_condor.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
width = 1
put_inner_lte_delta = -0.2
call_inner_lte_delta = 0.1
ic = IronCondor.custom_generator_idea_one(ops,
ic = IronCondor.generate_by_deltas(ops,
width, put_inner_lte_delta, call_inner_lte_delta)

direction = "credit"
Expand Down
2 changes: 1 addition & 1 deletion fast_arrow/option_strategies/iron_condor.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def strings_to_np_array(cls, strings):


@classmethod
def custom_generator_idea_one(cls, options,
def generate_by_deltas(cls, options,
width, put_inner_lte_delta, call_inner_lte_delta):
"""
totally just playing around ideas for the API.
Expand Down

0 comments on commit cbb50b6

Please sign in to comment.