Commit Graph

1605 Commits (2a723ac9947264b1ef684fd1b1e0a5a9afd61190)

Author SHA1 Message Date
Tyler Goodlet 2a723ac994 Expose dollar volume to fsp engine
It can now be declared inside an fsp config dict under the name
`dolla_vlm`. We still need to offer an engine control that zeros
the newest sample value instead of copying from the previous.

This also litters the engine code with `pyqtgraph` profiling to see if
we can improve startup times - likely it'll mean pre-allocating a small
fsp daemon cluster at startup.
2021-10-29 16:14:00 -04:00
Tyler Goodlet 614bb1717b Fix shm index update race
There was a lingering issue where the fsp daemon would sync its shm
array with the source data and we'd set the start/end indices to the
same value. Under some races a reader would then read an empty `.array`
which it wasn't expecting. This fixes that as well as tidies up the
`ShmArray.push()` logic and adds a temporary check in `.array` for zero
length if the array hasn't been written yet.

We can now start removing read array length checks in consumer code
and hopefully no more races will show up.
2021-10-29 16:14:00 -04:00
Tyler Goodlet cd4f0e3276 TOSQUASH fix subplots.values() cuckup 2021-10-29 16:14:00 -04:00
Tyler Goodlet 63e7d1c914 Add first draft of "dollar volume" fsp 2021-10-29 16:14:00 -04:00
Tyler Goodlet 670de076fb Autoscale the y-range for all linked charts 2021-10-29 16:14:00 -04:00
Tyler Goodlet 825820e281 `graphics_name` is more explicit then `name` 2021-10-29 16:14:00 -04:00
Tyler Goodlet 7c0a2a6100 Process framed ticks by type in main graphics loop
We are already packing framed ticks in extended lists from
the `.data._sampling.uniform_rate_send()` task so the natural solution
to avoid needless graphics cycles for HFT-ish feeds (like binance) is
to unpack those frames and for most cases only update graphics with the
"latest" data per loop iteration. Unpacking in this way also lessens
nested-iterations per tick type.

Btw, this also effectively solves all remaining issues of fast tick
feeds over-triggering the graphics loop renders as long as the original
quote stream is throttled appropriately, usually to the local display
rate.

Relates to #183, #192

Dirty deats:
- drop all per-tick rate checks, they were always somewhat pointless
  when iterating a frame of ticks per render cycle XD.
- unpack tick frame into ticks per frame type, and last of each type;
  the lasts are used to update each part of the UI/graphics by class.
- only skip the label update if we can't retrieve the last from from a
  graphics source array; it seems `chart.update_curve_from_array()`
  already does a `len` check internally.
- add some draft commented code for tick type classes and a possible
  wire framed tick data structure.
- move `chart_maxmin()` range computer to module level, bind a chart to
  it with a `partial.`
- only check rate limits in main quote loop thus reporting actual
  overages
- add in commented logic for only updating the "last" cleared price from
  the most recent framed value if we want to eventually (right now seems
  like this is only relevant to ib and it's dark trades: `utrade`).
- rename `_clear_throttle_rate` -> `_quote_throttle_rate`, drop
  `_book_throttle_rate`.
2021-10-29 16:14:00 -04:00
Tyler Goodlet 29d41b36a3 Update fsps and overlays inside main OHLC chart update loop 2021-10-29 16:14:00 -04:00
Tyler Goodlet a36bbdea7a Fix color passthrough, make overlays a `dict` 2021-10-29 16:14:00 -04:00
Tyler Goodlet c67d90eace Factor FSP subplot update code into func
This is in prep toward doing fsp graphics updates from the main quotes
update loop (where OHLC and volume are done). Updating fsp output from
that task should, for the majority of cases, be fine presuming the
processing is derived from the quote stream as a source. Further,
calling an update function on each fsp subplot/overlay is of course
faster then a full task switch - which is how it currently works with
a separate stream for every fsp output. This also will let us delay
adding full `Feed` support around fsp streams for the moment while still
getting quote throttling dictated by the quote stream.

Going forward, We can still support a separate task/fsp stream for
updates as needed (ex. some kind of fast external data source that isn't
synced with price data) but it should be enabled as needed required by
the user.
2021-10-29 16:14:00 -04:00
Tyler Goodlet 6e226de692 Move top level fsp pkg code into an `_engine` module 2021-10-29 16:14:00 -04:00
Tyler Goodlet 6fffa071d2 More prep for FSP feeds
The major change is moving the fsp "daemon" (more like wanna-be fspd)
endpoint to use the newer `tractor.Portal.open_context()` and
bi-directional streaming api.

There's a few other things in here too:
- make a helper for allocating single colume fsp shm arrays
- rename some some fsp related functions to be more explicit on their
  purposes
2021-10-29 16:14:00 -04:00
Tyler Goodlet 429b6f6891 Port fsp daemon to tractor's context api 2021-10-29 16:14:00 -04:00
Tyler Goodlet 154e1f7087 Keep slots ratio of 1 on derivs at startup 2021-10-29 16:14:00 -04:00
Tyler Goodlet e00b98ac3b Force min pnl label width to avoid resizes on magnitude steps 2021-10-29 16:14:00 -04:00
Tyler Goodlet 3538cfd9a0 Shorten edit name, passthrough kwargs to adder methods 2021-10-29 16:14:00 -04:00
Tyler Goodlet be6bc86773 More explicit error on shm push overruns 2021-10-29 16:14:00 -04:00
Tyler Goodlet f973e39093 Update pp size label on settings changes
Resolves #232
2021-10-29 16:14:00 -04:00
Tyler Goodlet aede167996 Make `.paint()` method always the last 2021-10-29 16:13:28 -04:00
Tyler Goodlet 2227759f6e Always draw a last step line with px width=2 2021-10-29 16:13:28 -04:00
Tyler Goodlet 1eb170968d Clean up some imports, shift around some commented code 2021-10-29 16:13:28 -04:00
Tyler Goodlet 6db3afc5c0 Resize volume yaxis to in view range 2021-10-29 16:13:28 -04:00
Tyler Goodlet 342a8fd30c Update vlm sticky 2021-10-29 16:13:28 -04:00
Tyler Goodlet e0f7679128 Pass curve color through to y sticky label 2021-10-29 16:13:28 -04:00
Tyler Goodlet ec980fa353 Re-order grays by "lightness" 2021-10-29 16:13:28 -04:00
Tyler Goodlet a673fa3fee Add back in rsi 2021-10-29 16:13:28 -04:00
Tyler Goodlet 164009ff98 Increase current bar's pen size by a px 2021-10-29 16:13:28 -04:00
Tyler Goodlet db1827f689 Add dynamic subplot sizing logic, passthrouh step curve colors 2021-10-29 16:13:28 -04:00
Tyler Goodlet 3b0fbacefc Use filled rect for current step
A `QRectF` is easier to make and draw (i think?) so use that and fill it
on volume events for decent sleek real-time look. Adjust the step array
generator to allow for an endpoints flag. Comment and/or clean out all
the old path filling calls that gave us perf issues..
2021-10-29 16:13:28 -04:00
Tyler Goodlet b579fbc668 Add test logic for range based volume curve filling 2021-10-29 16:13:28 -04:00
Tyler Goodlet e1e521fdc1 Bleh, try a bunch of stuff for step filling
Turns out the performance of updating and refilling step curves > 1k ish
points is super slow :sadkek:. Disabling the fill basically returns
normal performance, so it seems maybe we'll stick with unfilled volume
"bars" for now. The other tricky bit is getting the path to extend and
fill which is particularly slow if you use the `QPainterPath.united()`
(what `+` set op does) operation which seems to require an entire redraw
of the curve each paint iteration. Removing the pixel buffer cache makes
things that much worse too..

One technique i tried was only setting a `._fill` flag when so many
datums are in view (< 1k as determined by the chart widget), and this
helps, but under high load (trade rates) you still see more lag then
without the fill which makes me say screw it and let's stick with
unfilled bars for now. Trying go to get performant filled curves will be
an exercise for an aspiring graphics eng :P
2021-10-29 16:13:28 -04:00
Tyler Goodlet fc1563dd90 Add last step updates and path fill support 2021-10-29 16:13:28 -04:00
Tyler Goodlet 6a915c75a7 Drop rsi from display by default 2021-10-29 16:13:28 -04:00
Tyler Goodlet 2df240cdfe Add todo for new view padding testing 2021-10-29 16:13:28 -04:00
Tyler Goodlet 553f001757 Add volume plot as default
Toss in support for a "step mode" curve (unfinished atm) and use it to
plot from the `volume` field of the ohlcv shm array (if available).

changes to make it happen,
- dynamically generate the fsp sidepane form from an input config `dict`
  |_ dynamically generate the underlying `pydantic` model
  |_
- add a "volume checker" helper func that inspects the shm array
- toss in sidepane resize calls to avoid race where the ohlcv array
  is plotted too slowly compared to the volume and the chart somehow
  doesn't show..
- drop duplicate rsi2 cruft (previously used to test plots of the shm
  data)
2021-10-29 16:13:28 -04:00
Tyler Goodlet 5d6ec278a3 Invert 'c' (connection) array
In latest `pyqtgraph` it seems there's a discrepancy
since `function.arrayToQPath()` was reworked and now
we need to *not* connect the last point for each bar.
2021-10-29 16:13:28 -04:00
Tyler Goodlet 768384f163 Draft 'step' curve; couldn't get pg builtin to work 2021-10-29 16:13:28 -04:00
Tyler Goodlet 643d2618ec Draft tina install section 2021-10-29 16:13:28 -04:00
Tyler Goodlet ef7d550e94 Toss in references step mode impl 2021-10-29 16:13:28 -04:00
Tyler Goodlet 89bf0b8d21 WIP fsp output throttling - not working yet 2021-10-29 16:12:34 -04:00
Tyler Goodlet 24596022f9 Wait for a last price tick before delivering quote 2021-10-29 09:31:06 -04:00
Tyler Goodlet af0503956a Use `tractor.to_asyncio.open_channel_from()` in ib backend 2021-10-29 09:26:42 -04:00
Tyler Goodlet 980a6dde05 Add ib gateway support, loop through names 2021-10-29 09:25:44 -04:00
Tyler Goodlet a114329ad9 Pass window id to click subcmd 2021-10-29 09:25:44 -04:00
Tyler Goodlet b180fa2083 Use bottom right of window for click 2021-10-29 09:25:44 -04:00
Tyler Goodlet 7d2a970e32 Add working i3 + xdotool script for ib data reset
Start of a general solution to #128
2021-10-29 09:25:44 -04:00
Tyler Goodlet 1416d4e6ac Add actor wide client ignore set, increase history retreival to 24 requests 2021-10-29 09:25:41 -04:00
Tyler Goodlet eca9b14cd6 Add (list of) `hosts` support in config and better scan error msg 2021-10-29 09:20:52 -04:00
goodboy 91c005b3c1
Merge pull request #230 from pikers/super_basic_brokerd_status
Super basic brokerd status
2021-10-28 13:04:22 -04:00
goodboy adb5a55e3f
Merge pull request #233 from pikers/tractor_branch_pin
Pin to specific branch made for us in `tractor`
2021-10-23 14:04:31 -04:00