Skip to content
David Maranto edited this page Nov 8, 2022 · 12 revisions

How to run tradebooks

  1. set up environement as in readme
  2. click run
  3. see plots
  4. play with variables

Multi-dimensional Visualization

If you want to draw plots in higher dimensions that 2D, here's how. The hypercast() function is built exactly for this purpose.

Code snippet:

from architect.libs.utillib import hypercast

x = np.arange(start=0, stop=10, step=1)
y = np.arange(start=0, stop=20, step=1)

x_hyper, y_hyper = hypercast(a, b)

z = some_function(a, b)
Clone this wiki locally