ogallagher / marketsense

Leverage the human neural network to predict market asset values
Other
1 stars 0 forks source link

Market sample data viewer, 2d line graph #16

Closed ogallagher closed 3 years ago

ogallagher commented 3 years ago

Create a market sample data viewer (price/time graph) to help validate program accuracy and provide additional info about the sample. Include the start and end datetimes.

Start by attempting to use fxgraph as a canvas-based graphing library.

ogallagher commented 3 years ago

I’ll try the Col-E/fxgraph fork instead, since that version seems to have a more active maintainer.

ogallagher commented 3 years ago

Here’s a link to my fork, where I’ve started by exploring the library, running demos, adding documentation, and listing some suggested changes.

ogallagher commented 3 years ago

In order to use fxgraph for marketsense, I’m going to need to either extend the default cell implementation (hierarchical, doesn’t quite match my use case), or replace it with an alternative IGraphNode implementation to represent a point in a line graph. The default edge classes seem to be usable as they are.

ogallagher commented 3 years ago

See ogallagher/fxgraph #14 for progress on Cartesian graph implementation.

ogallagher commented 3 years ago

I’m integrating the current (incomplete) cartesian graph implementation. There are many issues with it, but it’s good enough for now.