├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── backtrader ├── __init__.py ├── analyzer.py ├── analyzers │ ├── __init__.py │ ├── annualreturn.py │ ├── calmar.py │ ├── drawdown.py │ ├── leverage.py │ ├── logreturnsrolling.py │ ├── periodstats.py │ ├── positions.py │ ├── pyfolio.py │ ├── returns.py │ ├── sharpe.py │ ├── sqn.py │ ├── timereturn.py │ ├── tradeanalyzer.py │ ├── transactions.py │ └── vwr.py ├── broker.py ├── brokers │ ├── __init__.py │ ├── bbroker.py │ ├── ibbroker.py │ ├── oandabroker.py │ └── vcbroker.py ├── btrun │ ├── __init__.py │ └── btrun.py ├── cerebro.py ├── comminfo.py ├── commissions │ └── __init__.py ├── dataseries.py ├── errors.py ├── feed.py ├── feeds │ ├── __init__.py │ ├── blaze.py │ ├── btcsv.py │ ├── chainer.py │ ├── csvgeneric.py │ ├── ibdata.py │ ├── influxfeed.py │ ├── mt4csv.py │ ├── oanda.py │ ├── pandafeed.py │ ├── quandl.py │ ├── rollover.py │ ├── sierrachart.py │ ├── vcdata.py │ ├── vchart.py │ ├── vchartcsv.py │ ├── vchartfile.py │ └── yahoo.py ├── fillers.py ├── filters │ ├── __init__.py │ ├── bsplitter.py │ ├── calendardays.py │ ├── datafiller.py │ ├── datafilter.py │ ├── daysteps.py │ ├── heikinashi.py │ ├── renko.py │ └── session.py ├── flt.py ├── functions.py ├── indicator.py ├── indicators │ ├── __init__.py │ ├── accdecoscillator.py │ ├── aroon.py │ ├── atr.py │ ├── awesomeoscillator.py │ ├── basicops.py │ ├── bollinger.py │ ├── cci.py │ ├── contrib │ │ ├── __init__.py │ │ └── vortex.py │ ├── crossover.py │ ├── dema.py │ ├── deviation.py │ ├── directionalmove.py │ ├── dma.py │ ├── dpo.py │ ├── dv2.py │ ├── ema.py │ ├── envelope.py │ ├── hadelta.py │ ├── heikinashi.py │ ├── hma.py │ ├── hurst.py │ ├── ichimoku.py │ ├── kama.py │ ├── kst.py │ ├── lrsi.py │ ├── mabase.py │ ├── macd.py │ ├── momentum.py │ ├── ols.py │ ├── oscillator.py │ ├── percentchange.py │ ├── percentrank.py │ ├── pivotpoint.py │ ├── prettygoodoscillator.py │ ├── priceoscillator.py │ ├── psar.py │ ├── rmi.py │ ├── rsi.py │ ├── sma.py │ ├── smma.py │ ├── stochastic.py │ ├── trix.py │ ├── tsi.py │ ├── ultimateoscillator.py │ ├── vortex.py │ ├── williams.py │ ├── wma.py │ ├── zlema.py │ └── zlind.py ├── linebuffer.py ├── lineiterator.py ├── lineroot.py ├── lineseries.py ├── mathsupport.py ├── metabase.py ├── observer.py ├── observers │ ├── __init__.py │ ├── benchmark.py │ ├── broker.py │ ├── buysell.py │ ├── drawdown.py │ ├── logreturns.py │ ├── timereturn.py │ └── trades.py ├── order.py ├── plot │ ├── __init__.py │ ├── finance.py │ ├── formatters.py │ ├── locator.py │ ├── multicursor.py │ ├── plot.py │ ├── scheme.py │ └── utils.py ├── position.py ├── resamplerfilter.py ├── signal.py ├── signals │ └── __init__.py ├── sizer.py ├── sizers │ ├── __init__.py │ ├── fixedsize.py │ └── percents_sizer.py ├── store.py ├── stores │ ├── __init__.py │ ├── ibstore.py │ ├── oandastore.py │ ├── vchartfile.py │ └── vcstore.py ├── strategies │ ├── __init__.py │ └── sma_crossover.py ├── strategy.py ├── studies │ ├── __init__.py │ └── contrib │ │ ├── __init__.py │ │ └── fractal.py ├── talib.py ├── timer.py ├── trade.py ├── tradingcal.py ├── utils │ ├── __init__.py │ ├── autodict.py │ ├── date.py │ ├── dateintern.py │ ├── flushfile.py │ ├── ordereddefaultdict.py │ └── py3.py ├── version.py └── writer.py ├── changelog.txt ├── contrib ├── datas │ ├── daily-KO.csv │ └── daily-PEP.csv ├── samples │ └── pair-trading │ │ └── pair-trading.py └── utils │ ├── influxdb-import.py │ └── iqfeed-to-influxdb.py ├── datas ├── 2005-2006-day-001.txt ├── 2006-01-02-volume-min-001.txt ├── 2006-day-001-optix.txt ├── 2006-day-001.txt ├── 2006-day-002.txt ├── 2006-min-005.txt ├── 2006-month-001.txt ├── 2006-volume-day-001.txt ├── 2006-week-001.txt ├── 2006-week-002.txt ├── bidask.csv ├── bidask2.csv ├── nvda-1999-2014.txt ├── nvda-2014.txt ├── orcl-1995-2014.txt ├── orcl-2003-2005.txt ├── orcl-2014.txt ├── ticksample.csv ├── yhoo-1996-2014.txt ├── yhoo-1996-2015.txt ├── yhoo-2003-2005.txt └── yhoo-2014.txt ├── pypi.sh ├── samples ├── analyzer-annualreturn │ └── analyzer-annualreturn.py ├── bidask-to-ohlc │ └── bidask-to-ohlc.py ├── bracket │ └── bracket.py ├── btfd │ └── btfd.py ├── calendar-days │ └── calendar-days.py ├── calmar │ └── calmar-test.py ├── cheat-on-open │ └── cheat-on-open.py ├── commission-schemes │ └── commission-schemes.py ├── credit-interest │ └── credit-interest.py ├── data-bid-ask │ └── bidask.py ├── data-filler │ ├── data-filler.py │ └── relativevolume.py ├── data-multitimeframe │ └── data-multitimeframe.py ├── data-pandas │ ├── data-pandas-optix.py │ └── data-pandas.py ├── data-replay │ └── data-replay.py ├── data-resample │ └── data-resample.py ├── daysteps │ └── daysteps.py ├── future-spot │ └── future-spot.py ├── gold-vs-sp500 │ └── gold-vs-sp500.py ├── ib-cash-bid-ask │ └── ib-cash-bid-ask.py ├── ibtest │ └── ibtest.py ├── kselrsi │ └── ksignal.py ├── lineplotter │ └── lineplotter.py ├── lrsi │ └── lrsi-test.py ├── macd-settings │ └── macd-settings.py ├── memory-savings │ └── memory-savings.py ├── mixing-timeframes │ └── mixing-timeframes.py ├── multi-copy │ └── multi-copy.py ├── multi-example │ └── mult-values.py ├── multidata-strategy │ ├── multidata-strategy-unaligned.py │ └── multidata-strategy.py ├── multitrades │ ├── mtradeobserver.py │ └── multitrades.py ├── oandatest │ └── oandatest.py ├── observer-benchmark │ └── observer-benchmark.py ├── observers │ ├── observers-default-drawdown.py │ ├── observers-default.py │ ├── observers-orderobserver.py │ └── orderobserver.py ├── oco │ └── oco.py ├── optimization │ └── optimization.py ├── order-close │ ├── close-daily.py │ └── close-minute.py ├── order-execution │ └── order-execution.py ├── order-history │ └── order-history.py ├── order_target │ └── order_target.py ├── partial-plot │ └── partial-plot.py ├── pinkfish-challenge │ └── pinkfish-challenge.py ├── pivot-point │ ├── pivotpoint.py │ └── ppsample.py ├── plot-same-axis │ └── plot-same-axis.py ├── psar │ ├── psar-intraday.py │ └── psar.py ├── pyfolio2 │ ├── backtrader-pyfolio.ipynb │ └── pyfoliotest.py ├── pyfoliotest │ ├── backtrader-pyfolio.ipynb │ └── pyfoliotest.py ├── relative-volume │ ├── relative-volume.py │ └── relvolbybar.py ├── renko │ └── renko.py ├── resample-tickdata │ └── resample-tickdata.py ├── rollover │ └── rollover.py ├── sharpe-timereturn │ └── sharpe-timereturn.py ├── signals-strategy │ └── signals-strategy.py ├── sigsmacross │ ├── sigsmacross.py │ └── sigsmacross2.py ├── sizertest │ └── sizertest.py ├── slippage │ └── slippage.py ├── sratio │ └── sratio.py ├── stop-trading │ └── stop-loss-approaches.py ├── stoptrail │ └── trail.py ├── strategy-selection │ └── strategy-selection.py ├── talib │ ├── tablibsartest.py │ └── talibtest.py ├── timers │ ├── scheduled-min.py │ └── scheduled.py ├── tradingcalendar │ ├── tcal-intra.py │ └── tcal.py ├── vctest │ └── vctest.py ├── volumefilling │ └── volumefilling.py ├── vwr │ └── vwr.py ├── weekdays-filler │ ├── weekdaysaligner.py │ └── weekdaysfiller.py ├── writer-test │ └── writer-test.py └── yahoo-test │ └── yahoo-test.py ├── setup.py ├── tests ├── test_analyzer-sqn.py ├── test_analyzer-timereturn.py ├── test_comminfo.py ├── test_data_multiframe.py ├── test_data_replay.py ├── test_data_resample.py ├── test_ind_accdecosc.py ├── test_ind_aroonoscillator.py ├── test_ind_aroonupdown.py ├── test_ind_atr.py ├── test_ind_awesomeoscillator.py ├── test_ind_bbands.py ├── test_ind_cci.py ├── test_ind_dema.py ├── test_ind_demaenvelope.py ├── test_ind_demaosc.py ├── test_ind_dm.py ├── test_ind_dma.py ├── test_ind_downmove.py ├── test_ind_dpo.py ├── test_ind_dv2.py ├── test_ind_ema.py ├── test_ind_emaenvelope.py ├── test_ind_emaosc.py ├── test_ind_envelope.py ├── test_ind_heikinashi.py ├── test_ind_highest.py ├── test_ind_hma.py ├── test_ind_ichimoku.py ├── test_ind_kama.py ├── test_ind_kamaenvelope.py ├── test_ind_kamaosc.py ├── test_ind_kst.py ├── test_ind_lowest.py ├── test_ind_lrsi.py ├── test_ind_macdhisto.py ├── test_ind_minperiod.py ├── test_ind_momentum.py ├── test_ind_momentumoscillator.py ├── test_ind_oscillator.py ├── test_ind_pctchange.py ├── test_ind_pctrank.py ├── test_ind_pgo.py ├── test_ind_ppo.py ├── test_ind_pposhort.py ├── test_ind_priceosc.py ├── test_ind_rmi.py ├── test_ind_roc.py ├── test_ind_rsi.py ├── test_ind_rsi_safe.py ├── test_ind_sma.py ├── test_ind_smaenvelope.py ├── test_ind_smaosc.py ├── test_ind_smma.py ├── test_ind_smmaenvelope.py ├── test_ind_smmaosc.py ├── test_ind_stochastic.py ├── test_ind_stochasticfull.py ├── test_ind_sumn.py ├── test_ind_tema.py ├── test_ind_temaenvelope.py ├── test_ind_temaosc.py ├── test_ind_trix.py ├── test_ind_tsi.py ├── test_ind_ultosc.py ├── test_ind_upmove.py ├── test_ind_vortex.py ├── test_ind_williamsad.py ├── test_ind_williamsr.py ├── test_ind_wma.py ├── test_ind_wmaenvelope.py ├── test_ind_wmaosc.py ├── test_ind_zlema.py ├── test_ind_zlind.py ├── test_metaclass.py ├── test_order.py ├── test_position.py ├── test_strategy_optimized.py ├── test_strategy_unoptimized.py ├── test_study_fractal.py ├── test_trade.py ├── test_writer.py └── testcommon.py └── tools ├── bt-run.py ├── rewrite-data.py └── yahoodownload.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/README.rst -------------------------------------------------------------------------------- /backtrader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/__init__.py -------------------------------------------------------------------------------- /backtrader/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzer.py -------------------------------------------------------------------------------- /backtrader/analyzers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/__init__.py -------------------------------------------------------------------------------- /backtrader/analyzers/annualreturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/annualreturn.py -------------------------------------------------------------------------------- /backtrader/analyzers/calmar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/calmar.py -------------------------------------------------------------------------------- /backtrader/analyzers/drawdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/drawdown.py -------------------------------------------------------------------------------- /backtrader/analyzers/leverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/leverage.py -------------------------------------------------------------------------------- /backtrader/analyzers/logreturnsrolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/logreturnsrolling.py -------------------------------------------------------------------------------- /backtrader/analyzers/periodstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/periodstats.py -------------------------------------------------------------------------------- /backtrader/analyzers/positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/positions.py -------------------------------------------------------------------------------- /backtrader/analyzers/pyfolio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/pyfolio.py -------------------------------------------------------------------------------- /backtrader/analyzers/returns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/returns.py -------------------------------------------------------------------------------- /backtrader/analyzers/sharpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/sharpe.py -------------------------------------------------------------------------------- /backtrader/analyzers/sqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/sqn.py -------------------------------------------------------------------------------- /backtrader/analyzers/timereturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/timereturn.py -------------------------------------------------------------------------------- /backtrader/analyzers/tradeanalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/tradeanalyzer.py -------------------------------------------------------------------------------- /backtrader/analyzers/transactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/transactions.py -------------------------------------------------------------------------------- /backtrader/analyzers/vwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/analyzers/vwr.py -------------------------------------------------------------------------------- /backtrader/broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/broker.py -------------------------------------------------------------------------------- /backtrader/brokers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/brokers/__init__.py -------------------------------------------------------------------------------- /backtrader/brokers/bbroker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/brokers/bbroker.py -------------------------------------------------------------------------------- /backtrader/brokers/ibbroker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/brokers/ibbroker.py -------------------------------------------------------------------------------- /backtrader/brokers/oandabroker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/brokers/oandabroker.py -------------------------------------------------------------------------------- /backtrader/brokers/vcbroker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/brokers/vcbroker.py -------------------------------------------------------------------------------- /backtrader/btrun/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/btrun/__init__.py -------------------------------------------------------------------------------- /backtrader/btrun/btrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/btrun/btrun.py -------------------------------------------------------------------------------- /backtrader/cerebro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/cerebro.py -------------------------------------------------------------------------------- /backtrader/comminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/comminfo.py -------------------------------------------------------------------------------- /backtrader/commissions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/commissions/__init__.py -------------------------------------------------------------------------------- /backtrader/dataseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/dataseries.py -------------------------------------------------------------------------------- /backtrader/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/errors.py -------------------------------------------------------------------------------- /backtrader/feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feed.py -------------------------------------------------------------------------------- /backtrader/feeds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/__init__.py -------------------------------------------------------------------------------- /backtrader/feeds/blaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/blaze.py -------------------------------------------------------------------------------- /backtrader/feeds/btcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/btcsv.py -------------------------------------------------------------------------------- /backtrader/feeds/chainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/chainer.py -------------------------------------------------------------------------------- /backtrader/feeds/csvgeneric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/csvgeneric.py -------------------------------------------------------------------------------- /backtrader/feeds/ibdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/ibdata.py -------------------------------------------------------------------------------- /backtrader/feeds/influxfeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/influxfeed.py -------------------------------------------------------------------------------- /backtrader/feeds/mt4csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/mt4csv.py -------------------------------------------------------------------------------- /backtrader/feeds/oanda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/oanda.py -------------------------------------------------------------------------------- /backtrader/feeds/pandafeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/pandafeed.py -------------------------------------------------------------------------------- /backtrader/feeds/quandl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/quandl.py -------------------------------------------------------------------------------- /backtrader/feeds/rollover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/rollover.py -------------------------------------------------------------------------------- /backtrader/feeds/sierrachart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/sierrachart.py -------------------------------------------------------------------------------- /backtrader/feeds/vcdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/vcdata.py -------------------------------------------------------------------------------- /backtrader/feeds/vchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/vchart.py -------------------------------------------------------------------------------- /backtrader/feeds/vchartcsv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/vchartcsv.py -------------------------------------------------------------------------------- /backtrader/feeds/vchartfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/vchartfile.py -------------------------------------------------------------------------------- /backtrader/feeds/yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/feeds/yahoo.py -------------------------------------------------------------------------------- /backtrader/fillers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/fillers.py -------------------------------------------------------------------------------- /backtrader/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/__init__.py -------------------------------------------------------------------------------- /backtrader/filters/bsplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/bsplitter.py -------------------------------------------------------------------------------- /backtrader/filters/calendardays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/calendardays.py -------------------------------------------------------------------------------- /backtrader/filters/datafiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/datafiller.py -------------------------------------------------------------------------------- /backtrader/filters/datafilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/datafilter.py -------------------------------------------------------------------------------- /backtrader/filters/daysteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/daysteps.py -------------------------------------------------------------------------------- /backtrader/filters/heikinashi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/heikinashi.py -------------------------------------------------------------------------------- /backtrader/filters/renko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/renko.py -------------------------------------------------------------------------------- /backtrader/filters/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/filters/session.py -------------------------------------------------------------------------------- /backtrader/flt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/flt.py -------------------------------------------------------------------------------- /backtrader/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/functions.py -------------------------------------------------------------------------------- /backtrader/indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicator.py -------------------------------------------------------------------------------- /backtrader/indicators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/__init__.py -------------------------------------------------------------------------------- /backtrader/indicators/accdecoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/accdecoscillator.py -------------------------------------------------------------------------------- /backtrader/indicators/aroon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/aroon.py -------------------------------------------------------------------------------- /backtrader/indicators/atr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/atr.py -------------------------------------------------------------------------------- /backtrader/indicators/awesomeoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/awesomeoscillator.py -------------------------------------------------------------------------------- /backtrader/indicators/basicops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/basicops.py -------------------------------------------------------------------------------- /backtrader/indicators/bollinger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/bollinger.py -------------------------------------------------------------------------------- /backtrader/indicators/cci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/cci.py -------------------------------------------------------------------------------- /backtrader/indicators/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/contrib/__init__.py -------------------------------------------------------------------------------- /backtrader/indicators/contrib/vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/contrib/vortex.py -------------------------------------------------------------------------------- /backtrader/indicators/crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/crossover.py -------------------------------------------------------------------------------- /backtrader/indicators/dema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/dema.py -------------------------------------------------------------------------------- /backtrader/indicators/deviation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/deviation.py -------------------------------------------------------------------------------- /backtrader/indicators/directionalmove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/directionalmove.py -------------------------------------------------------------------------------- /backtrader/indicators/dma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/dma.py -------------------------------------------------------------------------------- /backtrader/indicators/dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/dpo.py -------------------------------------------------------------------------------- /backtrader/indicators/dv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/dv2.py -------------------------------------------------------------------------------- /backtrader/indicators/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/ema.py -------------------------------------------------------------------------------- /backtrader/indicators/envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/envelope.py -------------------------------------------------------------------------------- /backtrader/indicators/hadelta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/hadelta.py -------------------------------------------------------------------------------- /backtrader/indicators/heikinashi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/heikinashi.py -------------------------------------------------------------------------------- /backtrader/indicators/hma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/hma.py -------------------------------------------------------------------------------- /backtrader/indicators/hurst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/hurst.py -------------------------------------------------------------------------------- /backtrader/indicators/ichimoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/ichimoku.py -------------------------------------------------------------------------------- /backtrader/indicators/kama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/kama.py -------------------------------------------------------------------------------- /backtrader/indicators/kst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/kst.py -------------------------------------------------------------------------------- /backtrader/indicators/lrsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/lrsi.py -------------------------------------------------------------------------------- /backtrader/indicators/mabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/mabase.py -------------------------------------------------------------------------------- /backtrader/indicators/macd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/macd.py -------------------------------------------------------------------------------- /backtrader/indicators/momentum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/momentum.py -------------------------------------------------------------------------------- /backtrader/indicators/ols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/ols.py -------------------------------------------------------------------------------- /backtrader/indicators/oscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/oscillator.py -------------------------------------------------------------------------------- /backtrader/indicators/percentchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/percentchange.py -------------------------------------------------------------------------------- /backtrader/indicators/percentrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/percentrank.py -------------------------------------------------------------------------------- /backtrader/indicators/pivotpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/pivotpoint.py -------------------------------------------------------------------------------- /backtrader/indicators/prettygoodoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/prettygoodoscillator.py -------------------------------------------------------------------------------- /backtrader/indicators/priceoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/priceoscillator.py -------------------------------------------------------------------------------- /backtrader/indicators/psar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/psar.py -------------------------------------------------------------------------------- /backtrader/indicators/rmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/rmi.py -------------------------------------------------------------------------------- /backtrader/indicators/rsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/rsi.py -------------------------------------------------------------------------------- /backtrader/indicators/sma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/sma.py -------------------------------------------------------------------------------- /backtrader/indicators/smma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/smma.py -------------------------------------------------------------------------------- /backtrader/indicators/stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/stochastic.py -------------------------------------------------------------------------------- /backtrader/indicators/trix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/trix.py -------------------------------------------------------------------------------- /backtrader/indicators/tsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/tsi.py -------------------------------------------------------------------------------- /backtrader/indicators/ultimateoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/ultimateoscillator.py -------------------------------------------------------------------------------- /backtrader/indicators/vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/vortex.py -------------------------------------------------------------------------------- /backtrader/indicators/williams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/williams.py -------------------------------------------------------------------------------- /backtrader/indicators/wma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/wma.py -------------------------------------------------------------------------------- /backtrader/indicators/zlema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/zlema.py -------------------------------------------------------------------------------- /backtrader/indicators/zlind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/indicators/zlind.py -------------------------------------------------------------------------------- /backtrader/linebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/linebuffer.py -------------------------------------------------------------------------------- /backtrader/lineiterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/lineiterator.py -------------------------------------------------------------------------------- /backtrader/lineroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/lineroot.py -------------------------------------------------------------------------------- /backtrader/lineseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/lineseries.py -------------------------------------------------------------------------------- /backtrader/mathsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/mathsupport.py -------------------------------------------------------------------------------- /backtrader/metabase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/metabase.py -------------------------------------------------------------------------------- /backtrader/observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observer.py -------------------------------------------------------------------------------- /backtrader/observers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/__init__.py -------------------------------------------------------------------------------- /backtrader/observers/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/benchmark.py -------------------------------------------------------------------------------- /backtrader/observers/broker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/broker.py -------------------------------------------------------------------------------- /backtrader/observers/buysell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/buysell.py -------------------------------------------------------------------------------- /backtrader/observers/drawdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/drawdown.py -------------------------------------------------------------------------------- /backtrader/observers/logreturns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/logreturns.py -------------------------------------------------------------------------------- /backtrader/observers/timereturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/timereturn.py -------------------------------------------------------------------------------- /backtrader/observers/trades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/observers/trades.py -------------------------------------------------------------------------------- /backtrader/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/order.py -------------------------------------------------------------------------------- /backtrader/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/__init__.py -------------------------------------------------------------------------------- /backtrader/plot/finance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/finance.py -------------------------------------------------------------------------------- /backtrader/plot/formatters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/formatters.py -------------------------------------------------------------------------------- /backtrader/plot/locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/locator.py -------------------------------------------------------------------------------- /backtrader/plot/multicursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/multicursor.py -------------------------------------------------------------------------------- /backtrader/plot/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/plot.py -------------------------------------------------------------------------------- /backtrader/plot/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/scheme.py -------------------------------------------------------------------------------- /backtrader/plot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/plot/utils.py -------------------------------------------------------------------------------- /backtrader/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/position.py -------------------------------------------------------------------------------- /backtrader/resamplerfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/resamplerfilter.py -------------------------------------------------------------------------------- /backtrader/signal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/signal.py -------------------------------------------------------------------------------- /backtrader/signals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/signals/__init__.py -------------------------------------------------------------------------------- /backtrader/sizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/sizer.py -------------------------------------------------------------------------------- /backtrader/sizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/sizers/__init__.py -------------------------------------------------------------------------------- /backtrader/sizers/fixedsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/sizers/fixedsize.py -------------------------------------------------------------------------------- /backtrader/sizers/percents_sizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/sizers/percents_sizer.py -------------------------------------------------------------------------------- /backtrader/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/store.py -------------------------------------------------------------------------------- /backtrader/stores/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/stores/__init__.py -------------------------------------------------------------------------------- /backtrader/stores/ibstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/stores/ibstore.py -------------------------------------------------------------------------------- /backtrader/stores/oandastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/stores/oandastore.py -------------------------------------------------------------------------------- /backtrader/stores/vchartfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/stores/vchartfile.py -------------------------------------------------------------------------------- /backtrader/stores/vcstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/stores/vcstore.py -------------------------------------------------------------------------------- /backtrader/strategies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/strategies/__init__.py -------------------------------------------------------------------------------- /backtrader/strategies/sma_crossover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/strategies/sma_crossover.py -------------------------------------------------------------------------------- /backtrader/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/strategy.py -------------------------------------------------------------------------------- /backtrader/studies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/studies/__init__.py -------------------------------------------------------------------------------- /backtrader/studies/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/studies/contrib/__init__.py -------------------------------------------------------------------------------- /backtrader/studies/contrib/fractal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/studies/contrib/fractal.py -------------------------------------------------------------------------------- /backtrader/talib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/talib.py -------------------------------------------------------------------------------- /backtrader/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/timer.py -------------------------------------------------------------------------------- /backtrader/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/trade.py -------------------------------------------------------------------------------- /backtrader/tradingcal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/tradingcal.py -------------------------------------------------------------------------------- /backtrader/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/utils/__init__.py -------------------------------------------------------------------------------- /backtrader/utils/autodict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/utils/autodict.py -------------------------------------------------------------------------------- /backtrader/utils/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/utils/date.py -------------------------------------------------------------------------------- /backtrader/utils/dateintern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/utils/dateintern.py -------------------------------------------------------------------------------- /backtrader/utils/flushfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/utils/flushfile.py -------------------------------------------------------------------------------- /backtrader/utils/ordereddefaultdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/utils/ordereddefaultdict.py -------------------------------------------------------------------------------- /backtrader/utils/py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/utils/py3.py -------------------------------------------------------------------------------- /backtrader/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/version.py -------------------------------------------------------------------------------- /backtrader/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/backtrader/writer.py -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/changelog.txt -------------------------------------------------------------------------------- /contrib/datas/daily-KO.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/contrib/datas/daily-KO.csv -------------------------------------------------------------------------------- /contrib/datas/daily-PEP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/contrib/datas/daily-PEP.csv -------------------------------------------------------------------------------- /contrib/samples/pair-trading/pair-trading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/contrib/samples/pair-trading/pair-trading.py -------------------------------------------------------------------------------- /contrib/utils/influxdb-import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/contrib/utils/influxdb-import.py -------------------------------------------------------------------------------- /contrib/utils/iqfeed-to-influxdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/contrib/utils/iqfeed-to-influxdb.py -------------------------------------------------------------------------------- /datas/2005-2006-day-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2005-2006-day-001.txt -------------------------------------------------------------------------------- /datas/2006-01-02-volume-min-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-01-02-volume-min-001.txt -------------------------------------------------------------------------------- /datas/2006-day-001-optix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-day-001-optix.txt -------------------------------------------------------------------------------- /datas/2006-day-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-day-001.txt -------------------------------------------------------------------------------- /datas/2006-day-002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-day-002.txt -------------------------------------------------------------------------------- /datas/2006-min-005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-min-005.txt -------------------------------------------------------------------------------- /datas/2006-month-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-month-001.txt -------------------------------------------------------------------------------- /datas/2006-volume-day-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-volume-day-001.txt -------------------------------------------------------------------------------- /datas/2006-week-001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-week-001.txt -------------------------------------------------------------------------------- /datas/2006-week-002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/2006-week-002.txt -------------------------------------------------------------------------------- /datas/bidask.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/bidask.csv -------------------------------------------------------------------------------- /datas/bidask2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/bidask2.csv -------------------------------------------------------------------------------- /datas/nvda-1999-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/nvda-1999-2014.txt -------------------------------------------------------------------------------- /datas/nvda-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/nvda-2014.txt -------------------------------------------------------------------------------- /datas/orcl-1995-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/orcl-1995-2014.txt -------------------------------------------------------------------------------- /datas/orcl-2003-2005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/orcl-2003-2005.txt -------------------------------------------------------------------------------- /datas/orcl-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/orcl-2014.txt -------------------------------------------------------------------------------- /datas/ticksample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/ticksample.csv -------------------------------------------------------------------------------- /datas/yhoo-1996-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/yhoo-1996-2014.txt -------------------------------------------------------------------------------- /datas/yhoo-1996-2015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/yhoo-1996-2015.txt -------------------------------------------------------------------------------- /datas/yhoo-2003-2005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/yhoo-2003-2005.txt -------------------------------------------------------------------------------- /datas/yhoo-2014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/datas/yhoo-2014.txt -------------------------------------------------------------------------------- /pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/pypi.sh -------------------------------------------------------------------------------- /samples/analyzer-annualreturn/analyzer-annualreturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/analyzer-annualreturn/analyzer-annualreturn.py -------------------------------------------------------------------------------- /samples/bidask-to-ohlc/bidask-to-ohlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/bidask-to-ohlc/bidask-to-ohlc.py -------------------------------------------------------------------------------- /samples/bracket/bracket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/bracket/bracket.py -------------------------------------------------------------------------------- /samples/btfd/btfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/btfd/btfd.py -------------------------------------------------------------------------------- /samples/calendar-days/calendar-days.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/calendar-days/calendar-days.py -------------------------------------------------------------------------------- /samples/calmar/calmar-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/calmar/calmar-test.py -------------------------------------------------------------------------------- /samples/cheat-on-open/cheat-on-open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/cheat-on-open/cheat-on-open.py -------------------------------------------------------------------------------- /samples/commission-schemes/commission-schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/commission-schemes/commission-schemes.py -------------------------------------------------------------------------------- /samples/credit-interest/credit-interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/credit-interest/credit-interest.py -------------------------------------------------------------------------------- /samples/data-bid-ask/bidask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-bid-ask/bidask.py -------------------------------------------------------------------------------- /samples/data-filler/data-filler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-filler/data-filler.py -------------------------------------------------------------------------------- /samples/data-filler/relativevolume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-filler/relativevolume.py -------------------------------------------------------------------------------- /samples/data-multitimeframe/data-multitimeframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-multitimeframe/data-multitimeframe.py -------------------------------------------------------------------------------- /samples/data-pandas/data-pandas-optix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-pandas/data-pandas-optix.py -------------------------------------------------------------------------------- /samples/data-pandas/data-pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-pandas/data-pandas.py -------------------------------------------------------------------------------- /samples/data-replay/data-replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-replay/data-replay.py -------------------------------------------------------------------------------- /samples/data-resample/data-resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/data-resample/data-resample.py -------------------------------------------------------------------------------- /samples/daysteps/daysteps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/daysteps/daysteps.py -------------------------------------------------------------------------------- /samples/future-spot/future-spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/future-spot/future-spot.py -------------------------------------------------------------------------------- /samples/gold-vs-sp500/gold-vs-sp500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/gold-vs-sp500/gold-vs-sp500.py -------------------------------------------------------------------------------- /samples/ib-cash-bid-ask/ib-cash-bid-ask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/ib-cash-bid-ask/ib-cash-bid-ask.py -------------------------------------------------------------------------------- /samples/ibtest/ibtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/ibtest/ibtest.py -------------------------------------------------------------------------------- /samples/kselrsi/ksignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/kselrsi/ksignal.py -------------------------------------------------------------------------------- /samples/lineplotter/lineplotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/lineplotter/lineplotter.py -------------------------------------------------------------------------------- /samples/lrsi/lrsi-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/lrsi/lrsi-test.py -------------------------------------------------------------------------------- /samples/macd-settings/macd-settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/macd-settings/macd-settings.py -------------------------------------------------------------------------------- /samples/memory-savings/memory-savings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/memory-savings/memory-savings.py -------------------------------------------------------------------------------- /samples/mixing-timeframes/mixing-timeframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/mixing-timeframes/mixing-timeframes.py -------------------------------------------------------------------------------- /samples/multi-copy/multi-copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/multi-copy/multi-copy.py -------------------------------------------------------------------------------- /samples/multi-example/mult-values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/multi-example/mult-values.py -------------------------------------------------------------------------------- /samples/multidata-strategy/multidata-strategy-unaligned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/multidata-strategy/multidata-strategy-unaligned.py -------------------------------------------------------------------------------- /samples/multidata-strategy/multidata-strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/multidata-strategy/multidata-strategy.py -------------------------------------------------------------------------------- /samples/multitrades/mtradeobserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/multitrades/mtradeobserver.py -------------------------------------------------------------------------------- /samples/multitrades/multitrades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/multitrades/multitrades.py -------------------------------------------------------------------------------- /samples/oandatest/oandatest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/oandatest/oandatest.py -------------------------------------------------------------------------------- /samples/observer-benchmark/observer-benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/observer-benchmark/observer-benchmark.py -------------------------------------------------------------------------------- /samples/observers/observers-default-drawdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/observers/observers-default-drawdown.py -------------------------------------------------------------------------------- /samples/observers/observers-default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/observers/observers-default.py -------------------------------------------------------------------------------- /samples/observers/observers-orderobserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/observers/observers-orderobserver.py -------------------------------------------------------------------------------- /samples/observers/orderobserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/observers/orderobserver.py -------------------------------------------------------------------------------- /samples/oco/oco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/oco/oco.py -------------------------------------------------------------------------------- /samples/optimization/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/optimization/optimization.py -------------------------------------------------------------------------------- /samples/order-close/close-daily.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/order-close/close-daily.py -------------------------------------------------------------------------------- /samples/order-close/close-minute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/order-close/close-minute.py -------------------------------------------------------------------------------- /samples/order-execution/order-execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/order-execution/order-execution.py -------------------------------------------------------------------------------- /samples/order-history/order-history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/order-history/order-history.py -------------------------------------------------------------------------------- /samples/order_target/order_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/order_target/order_target.py -------------------------------------------------------------------------------- /samples/partial-plot/partial-plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/partial-plot/partial-plot.py -------------------------------------------------------------------------------- /samples/pinkfish-challenge/pinkfish-challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/pinkfish-challenge/pinkfish-challenge.py -------------------------------------------------------------------------------- /samples/pivot-point/pivotpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/pivot-point/pivotpoint.py -------------------------------------------------------------------------------- /samples/pivot-point/ppsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/pivot-point/ppsample.py -------------------------------------------------------------------------------- /samples/plot-same-axis/plot-same-axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/plot-same-axis/plot-same-axis.py -------------------------------------------------------------------------------- /samples/psar/psar-intraday.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/psar/psar-intraday.py -------------------------------------------------------------------------------- /samples/psar/psar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/psar/psar.py -------------------------------------------------------------------------------- /samples/pyfolio2/backtrader-pyfolio.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/pyfolio2/backtrader-pyfolio.ipynb -------------------------------------------------------------------------------- /samples/pyfolio2/pyfoliotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/pyfolio2/pyfoliotest.py -------------------------------------------------------------------------------- /samples/pyfoliotest/backtrader-pyfolio.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/pyfoliotest/backtrader-pyfolio.ipynb -------------------------------------------------------------------------------- /samples/pyfoliotest/pyfoliotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/pyfoliotest/pyfoliotest.py -------------------------------------------------------------------------------- /samples/relative-volume/relative-volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/relative-volume/relative-volume.py -------------------------------------------------------------------------------- /samples/relative-volume/relvolbybar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/relative-volume/relvolbybar.py -------------------------------------------------------------------------------- /samples/renko/renko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/renko/renko.py -------------------------------------------------------------------------------- /samples/resample-tickdata/resample-tickdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/resample-tickdata/resample-tickdata.py -------------------------------------------------------------------------------- /samples/rollover/rollover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/rollover/rollover.py -------------------------------------------------------------------------------- /samples/sharpe-timereturn/sharpe-timereturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/sharpe-timereturn/sharpe-timereturn.py -------------------------------------------------------------------------------- /samples/signals-strategy/signals-strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/signals-strategy/signals-strategy.py -------------------------------------------------------------------------------- /samples/sigsmacross/sigsmacross.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/sigsmacross/sigsmacross.py -------------------------------------------------------------------------------- /samples/sigsmacross/sigsmacross2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/sigsmacross/sigsmacross2.py -------------------------------------------------------------------------------- /samples/sizertest/sizertest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/sizertest/sizertest.py -------------------------------------------------------------------------------- /samples/slippage/slippage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/slippage/slippage.py -------------------------------------------------------------------------------- /samples/sratio/sratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/sratio/sratio.py -------------------------------------------------------------------------------- /samples/stop-trading/stop-loss-approaches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/stop-trading/stop-loss-approaches.py -------------------------------------------------------------------------------- /samples/stoptrail/trail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/stoptrail/trail.py -------------------------------------------------------------------------------- /samples/strategy-selection/strategy-selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/strategy-selection/strategy-selection.py -------------------------------------------------------------------------------- /samples/talib/tablibsartest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/talib/tablibsartest.py -------------------------------------------------------------------------------- /samples/talib/talibtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/talib/talibtest.py -------------------------------------------------------------------------------- /samples/timers/scheduled-min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/timers/scheduled-min.py -------------------------------------------------------------------------------- /samples/timers/scheduled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/timers/scheduled.py -------------------------------------------------------------------------------- /samples/tradingcalendar/tcal-intra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/tradingcalendar/tcal-intra.py -------------------------------------------------------------------------------- /samples/tradingcalendar/tcal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/tradingcalendar/tcal.py -------------------------------------------------------------------------------- /samples/vctest/vctest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/vctest/vctest.py -------------------------------------------------------------------------------- /samples/volumefilling/volumefilling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/volumefilling/volumefilling.py -------------------------------------------------------------------------------- /samples/vwr/vwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/vwr/vwr.py -------------------------------------------------------------------------------- /samples/weekdays-filler/weekdaysaligner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/weekdays-filler/weekdaysaligner.py -------------------------------------------------------------------------------- /samples/weekdays-filler/weekdaysfiller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/weekdays-filler/weekdaysfiller.py -------------------------------------------------------------------------------- /samples/writer-test/writer-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/writer-test/writer-test.py -------------------------------------------------------------------------------- /samples/yahoo-test/yahoo-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/samples/yahoo-test/yahoo-test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_analyzer-sqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_analyzer-sqn.py -------------------------------------------------------------------------------- /tests/test_analyzer-timereturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_analyzer-timereturn.py -------------------------------------------------------------------------------- /tests/test_comminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_comminfo.py -------------------------------------------------------------------------------- /tests/test_data_multiframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_data_multiframe.py -------------------------------------------------------------------------------- /tests/test_data_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_data_replay.py -------------------------------------------------------------------------------- /tests/test_data_resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_data_resample.py -------------------------------------------------------------------------------- /tests/test_ind_accdecosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_accdecosc.py -------------------------------------------------------------------------------- /tests/test_ind_aroonoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_aroonoscillator.py -------------------------------------------------------------------------------- /tests/test_ind_aroonupdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_aroonupdown.py -------------------------------------------------------------------------------- /tests/test_ind_atr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_atr.py -------------------------------------------------------------------------------- /tests/test_ind_awesomeoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_awesomeoscillator.py -------------------------------------------------------------------------------- /tests/test_ind_bbands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_bbands.py -------------------------------------------------------------------------------- /tests/test_ind_cci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_cci.py -------------------------------------------------------------------------------- /tests/test_ind_dema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_dema.py -------------------------------------------------------------------------------- /tests/test_ind_demaenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_demaenvelope.py -------------------------------------------------------------------------------- /tests/test_ind_demaosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_demaosc.py -------------------------------------------------------------------------------- /tests/test_ind_dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_dm.py -------------------------------------------------------------------------------- /tests/test_ind_dma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_dma.py -------------------------------------------------------------------------------- /tests/test_ind_downmove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_downmove.py -------------------------------------------------------------------------------- /tests/test_ind_dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_dpo.py -------------------------------------------------------------------------------- /tests/test_ind_dv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_dv2.py -------------------------------------------------------------------------------- /tests/test_ind_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_ema.py -------------------------------------------------------------------------------- /tests/test_ind_emaenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_emaenvelope.py -------------------------------------------------------------------------------- /tests/test_ind_emaosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_emaosc.py -------------------------------------------------------------------------------- /tests/test_ind_envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_envelope.py -------------------------------------------------------------------------------- /tests/test_ind_heikinashi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_heikinashi.py -------------------------------------------------------------------------------- /tests/test_ind_highest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_highest.py -------------------------------------------------------------------------------- /tests/test_ind_hma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_hma.py -------------------------------------------------------------------------------- /tests/test_ind_ichimoku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_ichimoku.py -------------------------------------------------------------------------------- /tests/test_ind_kama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_kama.py -------------------------------------------------------------------------------- /tests/test_ind_kamaenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_kamaenvelope.py -------------------------------------------------------------------------------- /tests/test_ind_kamaosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_kamaosc.py -------------------------------------------------------------------------------- /tests/test_ind_kst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_kst.py -------------------------------------------------------------------------------- /tests/test_ind_lowest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_lowest.py -------------------------------------------------------------------------------- /tests/test_ind_lrsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_lrsi.py -------------------------------------------------------------------------------- /tests/test_ind_macdhisto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_macdhisto.py -------------------------------------------------------------------------------- /tests/test_ind_minperiod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_minperiod.py -------------------------------------------------------------------------------- /tests/test_ind_momentum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_momentum.py -------------------------------------------------------------------------------- /tests/test_ind_momentumoscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_momentumoscillator.py -------------------------------------------------------------------------------- /tests/test_ind_oscillator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_oscillator.py -------------------------------------------------------------------------------- /tests/test_ind_pctchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_pctchange.py -------------------------------------------------------------------------------- /tests/test_ind_pctrank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_pctrank.py -------------------------------------------------------------------------------- /tests/test_ind_pgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_pgo.py -------------------------------------------------------------------------------- /tests/test_ind_ppo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_ppo.py -------------------------------------------------------------------------------- /tests/test_ind_pposhort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_pposhort.py -------------------------------------------------------------------------------- /tests/test_ind_priceosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_priceosc.py -------------------------------------------------------------------------------- /tests/test_ind_rmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_rmi.py -------------------------------------------------------------------------------- /tests/test_ind_roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_roc.py -------------------------------------------------------------------------------- /tests/test_ind_rsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_rsi.py -------------------------------------------------------------------------------- /tests/test_ind_rsi_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_rsi_safe.py -------------------------------------------------------------------------------- /tests/test_ind_sma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_sma.py -------------------------------------------------------------------------------- /tests/test_ind_smaenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_smaenvelope.py -------------------------------------------------------------------------------- /tests/test_ind_smaosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_smaosc.py -------------------------------------------------------------------------------- /tests/test_ind_smma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_smma.py -------------------------------------------------------------------------------- /tests/test_ind_smmaenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_smmaenvelope.py -------------------------------------------------------------------------------- /tests/test_ind_smmaosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_smmaosc.py -------------------------------------------------------------------------------- /tests/test_ind_stochastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_stochastic.py -------------------------------------------------------------------------------- /tests/test_ind_stochasticfull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_stochasticfull.py -------------------------------------------------------------------------------- /tests/test_ind_sumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_sumn.py -------------------------------------------------------------------------------- /tests/test_ind_tema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_tema.py -------------------------------------------------------------------------------- /tests/test_ind_temaenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_temaenvelope.py -------------------------------------------------------------------------------- /tests/test_ind_temaosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_temaosc.py -------------------------------------------------------------------------------- /tests/test_ind_trix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_trix.py -------------------------------------------------------------------------------- /tests/test_ind_tsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_tsi.py -------------------------------------------------------------------------------- /tests/test_ind_ultosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_ultosc.py -------------------------------------------------------------------------------- /tests/test_ind_upmove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_upmove.py -------------------------------------------------------------------------------- /tests/test_ind_vortex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_vortex.py -------------------------------------------------------------------------------- /tests/test_ind_williamsad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_williamsad.py -------------------------------------------------------------------------------- /tests/test_ind_williamsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_williamsr.py -------------------------------------------------------------------------------- /tests/test_ind_wma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_wma.py -------------------------------------------------------------------------------- /tests/test_ind_wmaenvelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_wmaenvelope.py -------------------------------------------------------------------------------- /tests/test_ind_wmaosc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_wmaosc.py -------------------------------------------------------------------------------- /tests/test_ind_zlema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_zlema.py -------------------------------------------------------------------------------- /tests/test_ind_zlind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_ind_zlind.py -------------------------------------------------------------------------------- /tests/test_metaclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_metaclass.py -------------------------------------------------------------------------------- /tests/test_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_order.py -------------------------------------------------------------------------------- /tests/test_position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_position.py -------------------------------------------------------------------------------- /tests/test_strategy_optimized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_strategy_optimized.py -------------------------------------------------------------------------------- /tests/test_strategy_unoptimized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_strategy_unoptimized.py -------------------------------------------------------------------------------- /tests/test_study_fractal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_study_fractal.py -------------------------------------------------------------------------------- /tests/test_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_trade.py -------------------------------------------------------------------------------- /tests/test_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/test_writer.py -------------------------------------------------------------------------------- /tests/testcommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tests/testcommon.py -------------------------------------------------------------------------------- /tools/bt-run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tools/bt-run.py -------------------------------------------------------------------------------- /tools/rewrite-data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tools/rewrite-data.py -------------------------------------------------------------------------------- /tools/yahoodownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WISEPLAT/backtrader/HEAD/tools/yahoodownload.py --------------------------------------------------------------------------------