2021-07-21 23:42:15 +00:00
|
|
|
# piker: trading gear for hackers
|
|
|
|
# Copyright (C) Tyler Goodlet (in stewardship for piker0)
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Position info and display
|
|
|
|
|
|
|
|
"""
|
2021-08-04 17:37:51 +00:00
|
|
|
from __future__ import annotations
|
2021-08-23 18:21:26 +00:00
|
|
|
from dataclasses import dataclass
|
2021-08-18 12:55:42 +00:00
|
|
|
from enum import Enum
|
2021-07-21 23:42:15 +00:00
|
|
|
from functools import partial
|
|
|
|
from math import floor
|
2021-08-04 17:37:51 +00:00
|
|
|
from typing import Optional
|
2021-07-21 23:42:15 +00:00
|
|
|
|
2021-08-15 17:37:28 +00:00
|
|
|
|
2021-08-04 17:37:51 +00:00
|
|
|
from bidict import bidict
|
2021-07-22 15:23:04 +00:00
|
|
|
from pyqtgraph import functions as fn
|
2021-08-04 17:37:51 +00:00
|
|
|
from pydantic import BaseModel, validator
|
2021-07-21 23:42:15 +00:00
|
|
|
|
2021-07-22 16:05:53 +00:00
|
|
|
from ._annotate import LevelMarker
|
2021-07-21 23:42:15 +00:00
|
|
|
from ._anchors import (
|
2021-07-23 18:19:22 +00:00
|
|
|
pp_tight_and_right, # wanna keep it straight in the long run
|
2021-07-21 23:42:15 +00:00
|
|
|
gpath_pin,
|
|
|
|
)
|
2021-07-22 15:23:04 +00:00
|
|
|
from ..clearing._messages import BrokerdPosition, Status
|
|
|
|
from ..data._source import Symbol
|
2021-07-21 23:42:15 +00:00
|
|
|
from ._label import Label
|
|
|
|
from ._lines import LevelLine, level_line
|
|
|
|
from ._style import _font
|
2021-08-20 14:30:36 +00:00
|
|
|
from ._forms import FieldsForm, FillStatusBar, QLabel
|
2021-08-18 12:55:42 +00:00
|
|
|
from ..log import get_logger
|
2021-08-23 18:21:26 +00:00
|
|
|
from ..clearing._messages import Order
|
2021-08-18 12:55:42 +00:00
|
|
|
|
|
|
|
log = get_logger(__name__)
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Position(BaseModel):
|
2021-08-10 20:59:44 +00:00
|
|
|
'''Basic pp (personal position) model with attached fills history.
|
2021-07-22 15:23:04 +00:00
|
|
|
|
|
|
|
This type should be IPC wire ready?
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
symbol: Symbol
|
2021-07-22 15:23:04 +00:00
|
|
|
|
|
|
|
# last size and avg entry price
|
2021-07-21 23:42:15 +00:00
|
|
|
size: float
|
|
|
|
avg_price: float # TODO: contextual pricing
|
2021-07-22 15:23:04 +00:00
|
|
|
|
|
|
|
# ordered record of known constituent trade messages
|
|
|
|
fills: list[Status] = []
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
|
2021-08-20 14:30:36 +00:00
|
|
|
_size_units = bidict({
|
|
|
|
'currency': '$ size',
|
|
|
|
'units': '# units',
|
|
|
|
# TODO: but we'll need a `<brokermod>.get_accounts()` or something
|
|
|
|
# 'percent_of_port': '% of port',
|
|
|
|
})
|
|
|
|
SizeUnit = Enum(
|
|
|
|
'SizeUnit',
|
|
|
|
_size_units,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class Allocator(BaseModel):
|
|
|
|
|
2021-08-23 18:21:26 +00:00
|
|
|
symbol: Symbol
|
|
|
|
|
2021-08-20 14:30:36 +00:00
|
|
|
class Config:
|
|
|
|
validate_assignment = True
|
|
|
|
copy_on_model_validation = False
|
2021-08-23 18:21:26 +00:00
|
|
|
arbitrary_types_allowed = True
|
2021-08-20 14:30:36 +00:00
|
|
|
|
|
|
|
account: Optional[str] = 'paper'
|
|
|
|
_accounts: bidict[str, Optional[str]]
|
|
|
|
|
|
|
|
@validator('account', pre=True)
|
|
|
|
def set_account(cls, v, values):
|
|
|
|
if v:
|
|
|
|
return values['_accounts'][v]
|
|
|
|
|
|
|
|
size_unit: SizeUnit = 'currency'
|
|
|
|
_size_units: dict[str, Optional[str]] = _size_units
|
|
|
|
|
|
|
|
@validator('size_unit')
|
|
|
|
def lookup_key(cls, v):
|
|
|
|
# apply the corresponding enum key for the text "description" value
|
|
|
|
return v.name
|
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
# TODO: if we ever want ot support non-uniform entry-slot-proportion
|
|
|
|
# "sizes"
|
|
|
|
# disti_weight: str = 'uniform'
|
2021-08-20 14:30:36 +00:00
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
units_limit: float
|
|
|
|
currency_limit: float
|
2021-08-20 14:30:36 +00:00
|
|
|
slots: int
|
|
|
|
|
2021-08-23 18:21:26 +00:00
|
|
|
def next_order_info(
|
2021-08-20 14:30:36 +00:00
|
|
|
self,
|
|
|
|
|
2021-08-23 18:21:26 +00:00
|
|
|
startup_pp: Position,
|
|
|
|
live_pp: Position,
|
2021-08-20 14:30:36 +00:00
|
|
|
price: float,
|
|
|
|
action: str,
|
|
|
|
|
|
|
|
) -> dict:
|
|
|
|
'''Generate order request info for the "next" submittable order
|
|
|
|
depending on position / order entry config.
|
|
|
|
|
|
|
|
'''
|
2021-08-23 18:21:26 +00:00
|
|
|
sym = self.symbol
|
|
|
|
ld = sym.lot_size_digits
|
|
|
|
|
|
|
|
live_size = live_pp.size
|
2021-08-25 14:27:58 +00:00
|
|
|
startup_size = startup_pp.size
|
|
|
|
|
|
|
|
step_size = self.units_limit / self.slots
|
|
|
|
l_sub_pp = self.units_limit - live_size
|
|
|
|
|
|
|
|
if self.size_unit == 'currency':
|
|
|
|
startup_size = startup_pp.size * startup_pp.avg_price / price
|
|
|
|
step_size = self.currency_limit / self.slots / price
|
|
|
|
l_sub_pp = (
|
|
|
|
self.currency_limit - live_size * live_pp.avg_price
|
|
|
|
) / price
|
2021-08-20 14:30:36 +00:00
|
|
|
|
|
|
|
if (
|
2021-08-23 18:21:26 +00:00
|
|
|
action == 'buy' and startup_size > 0 or
|
|
|
|
action == 'sell' and startup_size < 0 or
|
|
|
|
live_size == 0
|
2021-08-20 14:30:36 +00:00
|
|
|
): # an entry
|
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
units_size = min(step_size, l_sub_pp)
|
2021-08-04 17:37:51 +00:00
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
else:
|
|
|
|
# exit at the slot size worth of units or the remaining
|
|
|
|
# units left for the position to be net-zero, whichever
|
|
|
|
# is smaller
|
|
|
|
units_size = min(step_size, live_size)
|
2021-08-04 17:37:51 +00:00
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
units = round(units_size, ndigits=ld)
|
|
|
|
return {
|
|
|
|
'size': units,
|
|
|
|
'size_digits': ld
|
|
|
|
}
|
2021-08-04 17:37:51 +00:00
|
|
|
|
|
|
|
|
2021-08-23 18:21:26 +00:00
|
|
|
@dataclass
|
|
|
|
class OrderModePane:
|
|
|
|
'''Composite set of widgets plus an allocator model for configuring
|
|
|
|
order entry sizes and position limits per tradable instrument.
|
2021-08-20 14:30:36 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
# config for and underlying validation model
|
2021-08-23 18:21:26 +00:00
|
|
|
tracker: PositionTracker
|
|
|
|
alloc: Allocator
|
|
|
|
|
|
|
|
# input fields
|
2021-08-20 14:30:36 +00:00
|
|
|
form: FieldsForm
|
|
|
|
|
2021-08-23 18:21:26 +00:00
|
|
|
# output fill status and labels
|
|
|
|
fill_bar: FillStatusBar
|
|
|
|
|
2021-08-20 14:30:36 +00:00
|
|
|
step_label: QLabel
|
|
|
|
pnl_label: QLabel
|
|
|
|
limit_label: QLabel
|
|
|
|
|
|
|
|
def transform_to(self, size_unit: str) -> None:
|
2021-08-25 14:27:58 +00:00
|
|
|
if self.alloc.size_unit == size_unit:
|
|
|
|
return
|
|
|
|
|
|
|
|
def on_selection_change(
|
|
|
|
self,
|
|
|
|
key: str,
|
|
|
|
text: str,
|
|
|
|
|
|
|
|
) -> None:
|
|
|
|
'''Called on any order pane drop down selection change.
|
|
|
|
|
|
|
|
'''
|
|
|
|
print(f'{text}')
|
|
|
|
setattr(self.alloc, key, text)
|
|
|
|
print(self.alloc.dict())
|
|
|
|
|
|
|
|
async def on_ui_settings_change(
|
|
|
|
self,
|
|
|
|
|
|
|
|
key: str,
|
|
|
|
value: str,
|
|
|
|
|
|
|
|
) -> bool:
|
|
|
|
'''Called on any order pane edit field value change.
|
|
|
|
|
|
|
|
'''
|
|
|
|
print(f'settings change: {key}:{value}')
|
|
|
|
# TODO: maybe return a diff of settings so if we can an error we
|
|
|
|
# can have general input handling code to report it through the
|
|
|
|
# UI in some way?
|
|
|
|
return True
|
2021-08-20 14:30:36 +00:00
|
|
|
|
2021-08-23 18:21:26 +00:00
|
|
|
def init_status_ui(
|
|
|
|
self,
|
|
|
|
):
|
2021-08-25 14:27:58 +00:00
|
|
|
alloc = self.alloc
|
|
|
|
asset_type = alloc.symbol.type_key
|
|
|
|
form = self.form
|
2021-08-23 18:21:26 +00:00
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
# TODO: pull from piker.toml
|
|
|
|
# default config
|
|
|
|
slots = 4
|
|
|
|
currency_limit = 5e3
|
|
|
|
|
|
|
|
startup_pp = self.tracker.startup_pp
|
|
|
|
|
|
|
|
alloc.slots = slots
|
|
|
|
alloc.currency_limit = currency_limit
|
|
|
|
|
|
|
|
# default entry sizing
|
|
|
|
if asset_type in ('stock', 'crypto', 'forex'):
|
|
|
|
|
|
|
|
alloc.size_unit = '$ size'
|
|
|
|
|
|
|
|
elif asset_type in ('future', 'option', 'futures_option'):
|
|
|
|
|
|
|
|
# since it's harder to know how currency "applies" in this case
|
|
|
|
# given leverage properties
|
|
|
|
alloc.size_unit = '# units'
|
|
|
|
|
|
|
|
# set units limit to slots size thus making make the next
|
|
|
|
# entry step 1.0
|
|
|
|
alloc.units_limit = slots
|
|
|
|
|
|
|
|
# if the current position is already greater then the limit
|
|
|
|
# settings, increase the limit to the current position
|
|
|
|
if alloc.size_unit == 'currency':
|
|
|
|
startup_size = startup_pp.size * startup_pp.avg_price
|
|
|
|
|
|
|
|
if startup_size > alloc.currency_limit:
|
|
|
|
alloc.currency_limit = round(startup_size, ndigits=2)
|
|
|
|
|
|
|
|
limit_text = alloc.currency_limit
|
|
|
|
|
|
|
|
else:
|
|
|
|
startup_size = startup_pp.size
|
2021-08-23 18:21:26 +00:00
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
if startup_size > alloc.units_limit:
|
|
|
|
alloc.units_limit = startup_size
|
2021-08-23 18:21:26 +00:00
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
limit_text = alloc.units_limit
|
|
|
|
|
|
|
|
# update size unit in UI
|
|
|
|
form.fields['size_unit'].setCurrentText(
|
|
|
|
alloc._size_units[alloc.size_unit]
|
|
|
|
)
|
|
|
|
form.fields['slots'].setText(str(alloc.slots))
|
|
|
|
|
|
|
|
form.fields['limit'].setText(str(limit_text))
|
|
|
|
|
|
|
|
# TODO: a reverse look up from the position to the equivalent
|
|
|
|
# account(s), if none then look to user config for default?
|
|
|
|
|
|
|
|
self.update_status_ui(size=startup_size)
|
2021-08-23 18:21:26 +00:00
|
|
|
|
|
|
|
def update_status_ui(
|
|
|
|
self,
|
|
|
|
size: float = None,
|
|
|
|
|
|
|
|
) -> None:
|
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
alloc = self.alloc
|
|
|
|
live_pp = self.tracker.live_pp
|
2021-08-23 18:21:26 +00:00
|
|
|
slots = alloc.slots
|
|
|
|
|
|
|
|
if alloc.size_unit == 'currency':
|
2021-08-25 14:27:58 +00:00
|
|
|
live_currency_size = size or (live_pp.size * live_pp.avg_price)
|
|
|
|
prop = live_currency_size / alloc.currency_limit
|
|
|
|
|
2021-08-23 18:21:26 +00:00
|
|
|
else:
|
2021-08-25 14:27:58 +00:00
|
|
|
prop = size or live_pp.size / alloc.units_limit
|
2021-08-23 18:21:26 +00:00
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
# calculate proportion of position size limit
|
|
|
|
# that exists and display in fill bar
|
|
|
|
# TODO: what should we do for fractional slot pps?
|
2021-08-23 18:21:26 +00:00
|
|
|
self.fill_bar.set_slots(
|
|
|
|
slots,
|
2021-08-25 14:27:58 +00:00
|
|
|
min(round(prop * slots), slots)
|
2021-08-23 18:21:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def on_level_change_update_next_order_info(
|
|
|
|
self,
|
|
|
|
|
|
|
|
level: float,
|
|
|
|
line: LevelLine,
|
|
|
|
order: Order,
|
|
|
|
|
|
|
|
) -> None:
|
|
|
|
'''A callback applied for each level change to the line
|
|
|
|
which will recompute the order size based on allocator
|
|
|
|
settings. this is assigned inside
|
|
|
|
``OrderMode.line_from_order()``
|
|
|
|
|
|
|
|
'''
|
|
|
|
order_info = self.alloc.next_order_info(
|
|
|
|
startup_pp=self.tracker.startup_pp,
|
|
|
|
live_pp=self.tracker.live_pp,
|
|
|
|
price=level,
|
|
|
|
action=order.action,
|
|
|
|
)
|
|
|
|
line.update_labels(order_info)
|
|
|
|
|
|
|
|
# update bound-in staged order
|
|
|
|
order.price = level
|
|
|
|
order.size = order_info['size']
|
|
|
|
|
2021-08-25 14:27:58 +00:00
|
|
|
def on_settings_change_update_ui(
|
|
|
|
self,
|
|
|
|
) -> None:
|
|
|
|
# TODO:
|
|
|
|
# - recompute both units_limit and currency_limit
|
|
|
|
# - update fill bar slotting if necessary (only on slots?)
|
|
|
|
...
|
|
|
|
|
2021-08-20 14:30:36 +00:00
|
|
|
|
2021-07-22 15:23:04 +00:00
|
|
|
class PositionTracker:
|
|
|
|
'''Track and display a real-time position for a single symbol
|
|
|
|
on a chart.
|
2021-07-21 23:42:15 +00:00
|
|
|
|
2021-07-22 15:23:04 +00:00
|
|
|
'''
|
2021-07-21 23:42:15 +00:00
|
|
|
# inputs
|
|
|
|
chart: 'ChartPlotWidget' # noqa
|
|
|
|
|
|
|
|
# allocated
|
2021-08-18 12:55:42 +00:00
|
|
|
startup_pp: Position
|
|
|
|
live_pp: Position
|
2021-07-21 23:42:15 +00:00
|
|
|
pp_label: Label
|
|
|
|
size_label: Label
|
|
|
|
line: Optional[LevelLine] = None
|
|
|
|
|
2021-08-01 22:53:30 +00:00
|
|
|
_color: str = 'default_lightest'
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
chart: 'ChartPlotWidget', # noqa
|
|
|
|
|
|
|
|
) -> None:
|
|
|
|
|
|
|
|
self.chart = chart
|
2021-08-18 12:55:42 +00:00
|
|
|
self.live_pp = Position(
|
2021-07-22 15:23:04 +00:00
|
|
|
symbol=chart.linked.symbol,
|
|
|
|
size=0,
|
|
|
|
avg_price=0,
|
|
|
|
)
|
2021-08-18 12:55:42 +00:00
|
|
|
self.startup_pp = self.live_pp.copy()
|
2021-07-22 15:23:04 +00:00
|
|
|
|
2021-07-21 23:42:15 +00:00
|
|
|
view = chart.getViewBox()
|
|
|
|
|
2021-08-10 20:59:44 +00:00
|
|
|
# literally the 'pp' (pee pee) label that's always in view
|
2021-07-21 23:42:15 +00:00
|
|
|
self.pp_label = pp_label = Label(
|
|
|
|
view=view,
|
|
|
|
fmt_str='pp',
|
|
|
|
color=self._color,
|
|
|
|
update_on_range_change=False,
|
|
|
|
)
|
|
|
|
|
2021-07-23 18:19:22 +00:00
|
|
|
# create placeholder 'up' level arrow
|
|
|
|
self._level_marker = None
|
|
|
|
self._level_marker = self.level_marker(size=1)
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
pp_label.scene_anchor = partial(
|
|
|
|
gpath_pin,
|
|
|
|
gpath=self._level_marker,
|
|
|
|
label=pp_label,
|
|
|
|
)
|
|
|
|
pp_label.render()
|
|
|
|
|
2021-08-18 14:08:57 +00:00
|
|
|
nsize = self.chart.linked.symbol.lot_size_digits
|
2021-08-15 17:37:28 +00:00
|
|
|
|
2021-07-21 23:42:15 +00:00
|
|
|
self.size_label = size_label = Label(
|
|
|
|
view=view,
|
|
|
|
color=self._color,
|
|
|
|
|
|
|
|
# this is "static" label
|
|
|
|
# update_on_range_change=False,
|
|
|
|
fmt_str='\n'.join((
|
2021-08-18 12:55:42 +00:00
|
|
|
':{entry_size:.{size_digits}f}x',
|
2021-07-21 23:42:15 +00:00
|
|
|
)),
|
|
|
|
|
|
|
|
fields={
|
|
|
|
'entry_size': 0,
|
2021-08-15 17:37:28 +00:00
|
|
|
'size_digits': nsize
|
2021-07-21 23:42:15 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
size_label.render()
|
2021-07-22 15:23:04 +00:00
|
|
|
|
2021-07-23 18:19:22 +00:00
|
|
|
size_label.scene_anchor = partial(
|
|
|
|
pp_tight_and_right,
|
|
|
|
label=self.pp_label,
|
2021-07-21 23:42:15 +00:00
|
|
|
)
|
2021-07-23 18:19:22 +00:00
|
|
|
|
|
|
|
# size_label.scene_anchor = lambda: (
|
|
|
|
# self.pp_label.txt.pos() + QPointF(self.pp_label.w, 0)
|
|
|
|
# )
|
|
|
|
# size_label.scene_anchor = lambda: (
|
|
|
|
# self.pp_label.scene_br().bottomRight() - QPointF(
|
|
|
|
# self.size_label.w, self.size_label.h/3)
|
|
|
|
# )
|
2021-07-21 23:42:15 +00:00
|
|
|
|
2021-07-22 15:23:04 +00:00
|
|
|
# TODO: if we want to show more position-y info?
|
2021-07-21 23:42:15 +00:00
|
|
|
# fmt_str='\n'.join((
|
|
|
|
# # '{entry_size}x ',
|
|
|
|
# '{percent_pnl} % PnL',
|
|
|
|
# # '{percent_of_port}% of port',
|
|
|
|
# '${base_unit_value}',
|
|
|
|
# )),
|
|
|
|
|
|
|
|
# fields={
|
|
|
|
# # 'entry_size': 0,
|
|
|
|
# 'percent_pnl': 0,
|
|
|
|
# 'percent_of_port': 2,
|
|
|
|
# 'base_unit_value': '1k',
|
|
|
|
# },
|
|
|
|
# )
|
2021-07-22 15:23:04 +00:00
|
|
|
|
2021-08-18 12:55:42 +00:00
|
|
|
@property
|
|
|
|
def pane(self) -> FieldsForm:
|
|
|
|
'''Return handle to pp side pane form.
|
|
|
|
|
|
|
|
'''
|
|
|
|
return self.chart.linked.godwidget.pp_pane
|
|
|
|
|
2021-07-23 18:19:22 +00:00
|
|
|
def update_graphics(
|
|
|
|
self,
|
|
|
|
marker: LevelMarker
|
|
|
|
|
|
|
|
) -> None:
|
|
|
|
'''Update all labels.
|
|
|
|
|
|
|
|
Meant to be called from the maker ``.paint()``
|
|
|
|
for immediate, lag free label draws.
|
|
|
|
|
|
|
|
'''
|
|
|
|
self.pp_label.update()
|
|
|
|
self.size_label.update()
|
|
|
|
|
2021-07-22 15:23:04 +00:00
|
|
|
def update(
|
|
|
|
self,
|
|
|
|
msg: BrokerdPosition,
|
2021-08-18 12:55:42 +00:00
|
|
|
position: Optional[Position] = None,
|
2021-07-22 15:23:04 +00:00
|
|
|
|
|
|
|
) -> None:
|
|
|
|
'''Update graphics and data from average price and size.
|
|
|
|
|
|
|
|
'''
|
2021-08-25 14:27:58 +00:00
|
|
|
# XXX: better place to do this?
|
|
|
|
symbol = self.chart.linked.symbol
|
|
|
|
avg_price, size = (
|
|
|
|
round(msg['avg_price'], ndigits=symbol.tick_size_digits),
|
|
|
|
round(msg['size'], ndigits=symbol.lot_size_digits),
|
|
|
|
)
|
2021-08-18 12:55:42 +00:00
|
|
|
|
|
|
|
# live pp updates
|
|
|
|
pp = position or self.live_pp
|
|
|
|
pp.avg_price = avg_price
|
|
|
|
pp.size = size
|
2021-07-22 15:23:04 +00:00
|
|
|
|
|
|
|
self.update_line(avg_price, size)
|
|
|
|
|
|
|
|
# label updates
|
|
|
|
self.size_label.fields['entry_size'] = size
|
|
|
|
self.size_label.render()
|
|
|
|
|
|
|
|
if size == 0:
|
|
|
|
self.hide()
|
|
|
|
|
|
|
|
else:
|
|
|
|
self._level_marker.level = avg_price
|
2021-07-23 18:19:22 +00:00
|
|
|
|
|
|
|
# these updates are critical to avoid lag on view/scene changes
|
2021-07-22 15:23:04 +00:00
|
|
|
self._level_marker.update() # trigger paint
|
2021-07-23 18:19:22 +00:00
|
|
|
self.pp_label.update()
|
|
|
|
self.size_label.update()
|
|
|
|
|
2021-07-22 15:23:04 +00:00
|
|
|
self.show()
|
|
|
|
|
2021-07-23 18:19:22 +00:00
|
|
|
# don't show side and status widgets unless
|
|
|
|
# order mode is "engaged" (which done via input controls)
|
|
|
|
self.hide_info()
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
def level(self) -> float:
|
|
|
|
if self.line:
|
|
|
|
return self.line.value()
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def show(self) -> None:
|
2021-08-18 12:55:42 +00:00
|
|
|
if self.live_pp.size:
|
2021-07-21 23:42:15 +00:00
|
|
|
self.line.show()
|
2021-07-22 15:23:04 +00:00
|
|
|
self._level_marker.show()
|
|
|
|
self.pp_label.show()
|
|
|
|
self.size_label.show()
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
def hide(self) -> None:
|
2021-07-22 15:23:04 +00:00
|
|
|
self.pp_label.hide()
|
|
|
|
self._level_marker.hide()
|
2021-07-21 23:42:15 +00:00
|
|
|
self.size_label.hide()
|
2021-07-22 15:23:04 +00:00
|
|
|
if self.line:
|
|
|
|
self.line.hide()
|
2021-07-21 23:42:15 +00:00
|
|
|
|
2021-07-22 15:23:04 +00:00
|
|
|
def hide_info(self) -> None:
|
2021-07-23 18:19:22 +00:00
|
|
|
'''Hide details (right now just size label?) of position.
|
2021-07-22 15:23:04 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
# TODO: add remove status bar widgets here
|
|
|
|
self.size_label.hide()
|
2021-07-21 23:42:15 +00:00
|
|
|
|
2021-07-23 18:19:22 +00:00
|
|
|
# TODO: move into annoate module
|
2021-07-21 23:42:15 +00:00
|
|
|
def level_marker(
|
|
|
|
self,
|
|
|
|
size: float,
|
|
|
|
|
2021-07-23 18:19:22 +00:00
|
|
|
) -> LevelMarker:
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
if self._level_marker:
|
|
|
|
self._level_marker.delete()
|
|
|
|
|
|
|
|
# arrow marker
|
|
|
|
# scale marker size with dpi-aware font size
|
|
|
|
font_size = _font.font.pixelSize()
|
|
|
|
|
|
|
|
# scale marker size with dpi-aware font size
|
|
|
|
arrow_size = floor(1.375 * font_size)
|
|
|
|
|
|
|
|
if size > 0:
|
|
|
|
style = '|<'
|
|
|
|
|
|
|
|
elif size < 0:
|
|
|
|
style = '>|'
|
|
|
|
|
|
|
|
arrow = LevelMarker(
|
|
|
|
chart=self.chart,
|
|
|
|
style=style,
|
|
|
|
get_level=self.level,
|
|
|
|
size=arrow_size,
|
2021-07-23 18:19:22 +00:00
|
|
|
on_paint=self.update_graphics,
|
2021-07-21 23:42:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.chart.getViewBox().scene().addItem(arrow)
|
|
|
|
arrow.show()
|
|
|
|
|
|
|
|
return arrow
|
|
|
|
|
|
|
|
def position_line(
|
|
|
|
self,
|
|
|
|
|
|
|
|
size: float,
|
|
|
|
level: float,
|
|
|
|
|
|
|
|
orient_v: str = 'bottom',
|
|
|
|
|
|
|
|
) -> LevelLine:
|
|
|
|
'''Convenience routine to add a line graphic representing an order
|
|
|
|
execution submitted to the EMS via the chart's "order mode".
|
|
|
|
|
|
|
|
'''
|
|
|
|
self.line = line = level_line(
|
|
|
|
self.chart,
|
|
|
|
level,
|
|
|
|
color=self._color,
|
|
|
|
add_label=False,
|
2021-08-15 17:37:28 +00:00
|
|
|
highlight_on_hover=False,
|
2021-07-21 23:42:15 +00:00
|
|
|
movable=False,
|
|
|
|
hide_xhair_on_hover=False,
|
|
|
|
use_marker_margin=True,
|
|
|
|
only_show_markers_on_hover=False,
|
|
|
|
always_show_labels=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
if size > 0:
|
|
|
|
style = '|<'
|
|
|
|
elif size < 0:
|
|
|
|
style = '>|'
|
|
|
|
|
|
|
|
marker = self._level_marker
|
2021-07-22 15:23:04 +00:00
|
|
|
marker.style = style
|
2021-07-21 23:42:15 +00:00
|
|
|
|
|
|
|
# set marker color to same as line
|
|
|
|
marker.setPen(line.currentPen)
|
|
|
|
marker.setBrush(fn.mkBrush(line.currentPen.color()))
|
|
|
|
marker.level = level
|
|
|
|
marker.update()
|
|
|
|
marker.show()
|
|
|
|
|
2021-07-22 15:23:04 +00:00
|
|
|
# show position marker on view "edge" when out of view
|
2021-07-21 23:42:15 +00:00
|
|
|
vb = line.getViewBox()
|
|
|
|
vb.sigRangeChanged.connect(marker.position_in_view)
|
|
|
|
|
|
|
|
line.set_level(level)
|
|
|
|
|
|
|
|
return line
|
|
|
|
|
2021-08-20 14:30:36 +00:00
|
|
|
# TODO: per account lines on a single (or very related) symbol
|
2021-07-21 23:42:15 +00:00
|
|
|
def update_line(
|
|
|
|
self,
|
|
|
|
|
|
|
|
price: float,
|
|
|
|
size: float,
|
|
|
|
|
|
|
|
) -> None:
|
|
|
|
'''Update personal position level line.
|
|
|
|
|
|
|
|
'''
|
|
|
|
# do line update
|
|
|
|
line = self.line
|
|
|
|
|
|
|
|
if line is None and size:
|
|
|
|
|
|
|
|
# create and show a pp line
|
|
|
|
line = self.line = self.position_line(
|
|
|
|
level=price,
|
|
|
|
size=size,
|
|
|
|
)
|
|
|
|
line.show()
|
|
|
|
|
|
|
|
elif line:
|
|
|
|
|
|
|
|
if size != 0.0:
|
|
|
|
line.set_level(price)
|
2021-07-22 15:23:04 +00:00
|
|
|
self._level_marker.level = price
|
2021-07-21 23:42:15 +00:00
|
|
|
self._level_marker.update()
|
2021-07-22 15:23:04 +00:00
|
|
|
# line.update_labels({'size': size})
|
2021-07-21 23:42:15 +00:00
|
|
|
line.show()
|
|
|
|
|
|
|
|
else:
|
|
|
|
# remove pp line from view
|
|
|
|
line.delete()
|
|
|
|
self.line = None
|