Coder Social home page Coder Social logo

Trading schedule about vectorbt HOT 10 CLOSED

polakowo avatar polakowo commented on July 27, 2024
Trading schedule

from vectorbt.

Comments (10)

polakowo avatar polakowo commented on July 27, 2024 1

You need to incorporate your schedule into your time series, which is done quite easily with pandas. To work 8 hours a day, just place signals only within those hours each day and generate an exit signal at the last tick of the day.

So, for example:

trading_time_idx = price.between_time('9:00','17:00',include_end=False).index

# restrict to trading time
entries[~entries.index.isin(trading_time_idx)] = False 
entries[entries.index.isin(trading_time_idx)] &= True
exits[~exits.index.isin(trading_time_idx)] = False
exits[exits.index.isin(trading_time_idx)] &= True

# close position at last tick
exits.loc[exits.groupby(exits.index.date).last().index] = True 

from vectorbt.

ecthx avatar ecthx commented on July 27, 2024

This is very helpful.
Thanks!

from vectorbt.

ecthx avatar ecthx commented on July 27, 2024

Does vectorbt reset the indicators at the beginning of the new trading session or after it detects large gap in the market data?

from vectorbt.

polakowo avatar polakowo commented on July 27, 2024

There is no detection or whatever, vectorbt receives a column (e.g. year of data) and resets only after reaching the end of the column. If you want to compute metrics per trading session you need to split this big column into many smaller columns, each per session. I can give you an example if this is what you want to achieve.

from vectorbt.

ecthx avatar ecthx commented on July 27, 2024

If you could give me an example that would be great. I'm working mostly with level2 data that I record myself so there is gaps in it.
I want to reset my indicators at the beginning of each trading day, so I guess splitting days into separate columns would work
Thanks

from vectorbt.

polakowo avatar polakowo commented on July 27, 2024

If it’s ok I’ll post an example on Saturday as I hasn’t been near my computer all this time.

from vectorbt.

ecthx avatar ecthx commented on July 27, 2024

Great. Thanks!

from vectorbt.

polakowo avatar polakowo commented on July 27, 2024

Sorry for the delay, I had to make some changes to the code to make it work.

You can find an example here.

from vectorbt.

Aqua-4 avatar Aqua-4 commented on July 27, 2024

Sorry for the delay, I had to make some changes to the code to make it work.

You can find an example here.

Cannot find the example anymore

from vectorbt.

dclausen avatar dclausen commented on July 27, 2024

Sorry for the delay, I had to make some changes to the code to make it work.
You can find an example here.

Cannot find the example anymore

Hey @Aqua-4 I found it here: https://github.com/polakowo/vectorbt/blob/master/examples/TradingSessions.ipynb

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.