We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My test script
Result in the console
Thank you in advance for helping on this
The text was updated successfully, but these errors were encountered:
The code uses IBWrap directly, which is just a base class whose methods don't do anything except print a warning.
IBWrap
In general you want to define your own callbacks wrapper as a new class derived from IBWrap and implement your customized functionality.
IBWrapSimple is an example of such a derived class. It used to be inside the package but now it has been moved to the examples/ folder.
IBWrapSimple
examples/
To use it as is, just put a copy of IBWrapSimple.R in your local folder and include it in your R session, i.e. replace:
IBWrapSimple.R
wrap <- IBWrap$new()
with something like
include("IBWrapSimple.R") wrap <- IBWrapSimple$new()
Eventually, you want to modify the functions in IBWrapSimple.R to suit your needs.
Sorry, something went wrong.
No branches or pull requests
My test script
Result in the console
Thank you in advance for helping on this
The text was updated successfully, but these errors were encountered: