Giter Club home page Giter Club logo

Comments (5)

polakowo avatar polakowo commented on September 24, 2024

You should create the array outside the simulation and pass it to the callback. If you write it inside the callback, you can read the written values after the simulation if you keep the reference to the array.

from vectorbt.

Kinzowa avatar Kinzowa commented on September 24, 2024

You should create the array outside the simulation and pass it to the callback. If you write it inside the callback, you can read the written values after the simulation if you keep the reference to the array.

Hi Oleg, could you please give an example on how to reference the array after the simulation ?

from vectorbt.

polakowo avatar polakowo commented on September 24, 2024
def some_callback(c, my_array, ...):
    my_array[i, col] = ...

my_array = np.full(...)
pf = vbt.Portfolio.from_signals(..., some_callback=some_callback, some_args=(my_array, ...))
print(my_array)

from vectorbt.

Kinzowa avatar Kinzowa commented on September 24, 2024

Thanks, much appreciated.

from vectorbt.

Kinzowa avatar Kinzowa commented on September 24, 2024

I tried with the information you provided but it throw an error :

TypeError: Portfolio.init() got an unexpected keyword argument 'callback'

What could be the reason ?
This is how I call from_order_func :

def generate(self):
  vbt.Portfolio.from_order_func(
              self._close,
              self._order_func_nb,
              vbt.Rep("long_entries"),
              vbt.Rep("long_exits"),
              vbt.Rep("short_entries"),
              vbt.Rep("short_exits"),
              vbt.Rep("weight"),
              vbt.Rep("messages"),
              pre_sim_func_nb=self.pre_sim_func_nb,
              pre_sim_args=(
                  vbt.Rep("open"),
                  vbt.Rep("high"),
                  vbt.Rep("low"),
              ),
              post_order_func_nb=self.post_order_func_nb,
              post_order_args=(
                  vbt.Rep("take_profit_enabled"),
                  vbt.Rep("take_profit_threshold"),
                  vbt.Rep("messages"),
              ),
              broadcast_named_args=dict(  # broadcast against each other
                  ...
              ),
              freq=self.freq,
              callback=self.update_array,  # <------------------------------ Callback
              callback_args=(self._failed_orders,)
          )

@staticmethod
def update_array(c, array):
    print(c)

from vectorbt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.