-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
325 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,41 @@ | ||
[general] | ||
# the username & password can be passed to the CLI in 3 ways: here, | ||
# through the $TT_USERNAME/$TT_PASSWORD environment variables, or, | ||
# if neither is present, entered manually. | ||
# username = foo | ||
# password = bar | ||
# default-account = example | ||
|
||
# the account number to use by default for trades/portfolio commands. | ||
# this bypasses the account choice menu. | ||
# default-account = 5WX01234 | ||
|
||
[portfolio] | ||
# this number controls how much BP can be used in total, relative to | ||
# the current $VIX level, before the CLI will warn you. | ||
# for example, with a VIX of 25, BP usage of 40%, and variation of 10, | ||
# you'd be warned for high BP usage since the acceptable range would be | ||
# VIX - variation < BP% < VIX + variation. you may also be warned for | ||
# low usage if you're perceived to be using your capital inefficiently; | ||
# e.g. with a VIX of 25, BP usage of 10%, and variation of 10. | ||
bp-target-percent-variation = 10 | ||
# this sets an upper bound for the amount of BP that can be allocated | ||
# to a single positions before the CLI will warn you. | ||
bp-max-percent-per-position = 5.0 | ||
# this allows you to set a target beta-weighted delta for your portfolio; | ||
# the CLI will warn you unless target - variation < BWD < target + variation. | ||
delta-target = 0 | ||
delta-variation = 5 | ||
[portfolio.positions] | ||
# these control whether the columns show up when running `tt pf positions` | ||
show-mark-price = false | ||
show-trade-price = false | ||
show-delta = false | ||
show-theta = false | ||
show-gamma = false | ||
|
||
[order] | ||
bp-warn-above-percent = 5 # TODO: make this a float | ||
|
||
[option.chain] | ||
# these control whether the columns show up when running `tt option chain` | ||
show-delta = true | ||
show-volume = true | ||
show-volume = false | ||
show-open-interest = true | ||
show-theta = true | ||
show-theta = false |
Oops, something went wrong.