back-trader-python 1.4.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- back_trader_python-1.4.0.dist-info/METADATA +1491 -0
- back_trader_python-1.4.0.dist-info/RECORD +465 -0
- back_trader_python-1.4.0.dist-info/WHEEL +5 -0
- back_trader_python-1.4.0.dist-info/licenses/LICENSE +674 -0
- back_trader_python-1.4.0.dist-info/top_level.txt +1 -0
- backtrader/__init__.py +148 -0
- backtrader/_cerebro/__init__.py +5 -0
- backtrader/_cerebro/channel.py +382 -0
- backtrader/_cerebro/execution.py +377 -0
- backtrader/_cerebro/lifecycle.py +143 -0
- backtrader/_cerebro/notifications.py +150 -0
- backtrader/_cerebro/presentation.py +230 -0
- backtrader/_cerebro/registry.py +593 -0
- backtrader/_cerebro/runnext.py +551 -0
- backtrader/_cerebro/runonce.py +142 -0
- backtrader/analyzer.py +594 -0
- backtrader/analyzers/__init__.py +50 -0
- backtrader/analyzers/annualreturn.py +226 -0
- backtrader/analyzers/calmar.py +165 -0
- backtrader/analyzers/drawdown.py +287 -0
- backtrader/analyzers/leverage.py +112 -0
- backtrader/analyzers/logreturnsrolling.py +190 -0
- backtrader/analyzers/periodstats.py +153 -0
- backtrader/analyzers/positions.py +119 -0
- backtrader/analyzers/pyfolio.py +470 -0
- backtrader/analyzers/returns.py +192 -0
- backtrader/analyzers/sharpe.py +307 -0
- backtrader/analyzers/sharpe_ratio_stats.py +534 -0
- backtrader/analyzers/sqn.py +112 -0
- backtrader/analyzers/timereturn.py +192 -0
- backtrader/analyzers/total_value.py +75 -0
- backtrader/analyzers/tradeanalyzer.py +278 -0
- backtrader/analyzers/transactions.py +141 -0
- backtrader/analyzers/vwr.py +245 -0
- backtrader/bokeh/__init__.py +155 -0
- backtrader/bokeh/analyzers/__init__.py +13 -0
- backtrader/bokeh/analyzers/plot.py +192 -0
- backtrader/bokeh/analyzers/recorder.py +181 -0
- backtrader/bokeh/app.py +1094 -0
- backtrader/bokeh/live/__init__.py +11 -0
- backtrader/bokeh/live/client.py +352 -0
- backtrader/bokeh/live/datahandler.py +346 -0
- backtrader/bokeh/plot_adapter.py +200 -0
- backtrader/bokeh/schemes/__init__.py +14 -0
- backtrader/bokeh/schemes/blackly.py +76 -0
- backtrader/bokeh/schemes/scheme.py +150 -0
- backtrader/bokeh/schemes/tradimo.py +82 -0
- backtrader/bokeh/tab.py +125 -0
- backtrader/bokeh/tabs/__init__.py +30 -0
- backtrader/bokeh/tabs/analyzer.py +120 -0
- backtrader/bokeh/tabs/config.py +154 -0
- backtrader/bokeh/tabs/live.py +109 -0
- backtrader/bokeh/tabs/log.py +185 -0
- backtrader/bokeh/tabs/metadata.py +182 -0
- backtrader/bokeh/tabs/performance.py +359 -0
- backtrader/bokeh/tabs/source.py +70 -0
- backtrader/bokeh/utils/__init__.py +8 -0
- backtrader/bokeh/utils/helpers.py +167 -0
- backtrader/bokeh/webapp.py +164 -0
- backtrader/broker.py +478 -0
- backtrader/brokers/__init__.py +36 -0
- backtrader/brokers/bbroker.py +2576 -0
- backtrader/brokers/btapibroker.py +8227 -0
- backtrader/brokers/hft/__init__.py +89 -0
- backtrader/brokers/hft/binance_bbo.py +625 -0
- backtrader/brokers/hft/binance_bbo_compare.py +1398 -0
- backtrader/brokers/hft/examples.py +1228 -0
- backtrader/brokers/hft/exchange.py +380 -0
- backtrader/brokers/hft/latency.py +309 -0
- backtrader/brokers/hft/matching_core.py +572 -0
- backtrader/brokers/hft/queue.py +238 -0
- backtrader/brokers/hft/recorder.py +88 -0
- backtrader/brokers/hft/state.py +138 -0
- backtrader/brokers/impact_models.py +118 -0
- backtrader/brokers/mixbroker.py +895 -0
- backtrader/brokers/tickbroker.py +1991 -0
- backtrader/btrun/__init__.py +12 -0
- backtrader/btrun/btrun.py +1218 -0
- backtrader/cerebro.py +828 -0
- backtrader/channel.py +682 -0
- backtrader/channels/__init__.py +23 -0
- backtrader/channels/bridge.py +186 -0
- backtrader/channels/funding.py +248 -0
- backtrader/channels/live_queue.py +216 -0
- backtrader/channels/live_validator.py +294 -0
- backtrader/channels/orderbook.py +257 -0
- backtrader/channels/tick.py +202 -0
- backtrader/comminfo.py +665 -0
- backtrader/commissions/__init__.py +106 -0
- backtrader/commissions/ctpoption.py +993 -0
- backtrader/configs/account_config_example.yaml +8 -0
- backtrader/dataseries.py +379 -0
- backtrader/errors.py +106 -0
- backtrader/events.py +980 -0
- backtrader/feed.py +1523 -0
- backtrader/feeds/__init__.py +75 -0
- backtrader/feeds/barrier.py +2006 -0
- backtrader/feeds/blaze.py +118 -0
- backtrader/feeds/btapifeed.py +1538 -0
- backtrader/feeds/btcsv.py +203 -0
- backtrader/feeds/chainer.py +114 -0
- backtrader/feeds/cryptohftdata.py +164 -0
- backtrader/feeds/csvgeneric.py +1205 -0
- backtrader/feeds/ctpcohort.py +1051 -0
- backtrader/feeds/influxfeed.py +158 -0
- backtrader/feeds/livefeed.py +71 -0
- backtrader/feeds/mixed_channel.py +108 -0
- backtrader/feeds/mt4csv.py +42 -0
- backtrader/feeds/pandafeed.py +381 -0
- backtrader/feeds/quandl.py +256 -0
- backtrader/feeds/rollover.py +229 -0
- backtrader/feeds/sierrachart.py +30 -0
- backtrader/feeds/vchart.py +162 -0
- backtrader/feeds/vchartcsv.py +84 -0
- backtrader/feeds/vchartfile.py +153 -0
- backtrader/feeds/yahoo.py +399 -0
- backtrader/fillers.py +148 -0
- backtrader/filters/__init__.py +34 -0
- backtrader/filters/bsplitter.py +127 -0
- backtrader/filters/calendardays.py +121 -0
- backtrader/filters/datafiller.py +192 -0
- backtrader/filters/datafilter.py +74 -0
- backtrader/filters/daysteps.py +96 -0
- backtrader/filters/heikinashi.py +63 -0
- backtrader/filters/renko.py +164 -0
- backtrader/filters/session.py +289 -0
- backtrader/flt.py +80 -0
- backtrader/functions.py +960 -0
- backtrader/indicator.py +449 -0
- backtrader/indicators/__init__.py +148 -0
- backtrader/indicators/accdecoscillator.py +110 -0
- backtrader/indicators/aroon.py +300 -0
- backtrader/indicators/atr.py +315 -0
- backtrader/indicators/awesomeoscillator.py +122 -0
- backtrader/indicators/basicops.py +834 -0
- backtrader/indicators/bollinger.py +223 -0
- backtrader/indicators/cci.py +89 -0
- backtrader/indicators/channels_ext.py +83 -0
- backtrader/indicators/contrib/__init__.py +228 -0
- backtrader/indicators/contrib/absolutely_no_lag_lwma.py +28 -0
- backtrader/indicators/contrib/absolutely_no_lag_lwma_color.py +44 -0
- backtrader/indicators/contrib/accumulation_distribution_line.py +92 -0
- backtrader/indicators/contrib/adx_cross_hull_style_indicator.py +249 -0
- backtrader/indicators/contrib/adxdmi.py +34 -0
- backtrader/indicators/contrib/ai_acceleration_deceleration_oscillator.py +34 -0
- backtrader/indicators/contrib/altr_trend_signal_v22.py +85 -0
- backtrader/indicators/contrib/anchored_momentum_line.py +115 -0
- backtrader/indicators/contrib/any_range_cld_tail_indicator.py +82 -0
- backtrader/indicators/contrib/aroon_horn_sign_indicator.py +96 -0
- backtrader/indicators/contrib/aroon_oscillator_sign_alert.py +50 -0
- backtrader/indicators/contrib/arrows_curves_indicator.py +112 -0
- backtrader/indicators/contrib/as_ctrend_indicator.py +143 -0
- backtrader/indicators/contrib/asimmetric_stoch_nr_indicator.py +187 -0
- backtrader/indicators/contrib/atr_normalize_histogram.py +118 -0
- backtrader/indicators/contrib/average_change_candle.py +165 -0
- backtrader/indicators/contrib/bb_squeeze_indicator.py +60 -0
- backtrader/indicators/contrib/bezier_st_dev_indicator.py +135 -0
- backtrader/indicators/contrib/binary_wave_indicator.py +233 -0
- backtrader/indicators/contrib/blau_c_momentum_indicator.py +123 -0
- backtrader/indicators/contrib/blau_cmi_indicator.py +141 -0
- backtrader/indicators/contrib/blau_csi.py +76 -0
- backtrader/indicators/contrib/blau_ergodic.py +53 -0
- backtrader/indicators/contrib/blau_t_stoch_i.py +72 -0
- backtrader/indicators/contrib/blau_ts_stochastic.py +85 -0
- backtrader/indicators/contrib/blau_tvi.py +55 -0
- backtrader/indicators/contrib/brain_trend2_indicator.py +128 -0
- backtrader/indicators/contrib/brain_trend_signal_proxy.py +47 -0
- backtrader/indicators/contrib/brake_parb_indicator.py +85 -0
- backtrader/indicators/contrib/breakout_bars_trend_v2.py +121 -0
- backtrader/indicators/contrib/bsi_indicator.py +87 -0
- backtrader/indicators/contrib/bulls_bears_eyes.py +67 -0
- backtrader/indicators/contrib/bulls_power.py +56 -0
- backtrader/indicators/contrib/bw_wise_man1_signal.py +102 -0
- backtrader/indicators/contrib/bykov_trend_indicator.py +85 -0
- backtrader/indicators/contrib/candle_stop_color.py +46 -0
- backtrader/indicators/contrib/candles_x_smoothed_indicator.py +69 -0
- backtrader/indicators/contrib/candlesticks_bw.py +45 -0
- backtrader/indicators/contrib/caudate_x_period_candle_color.py +56 -0
- backtrader/indicators/contrib/cci_histogram_indicator.py +53 -0
- backtrader/indicators/contrib/cci_woodies_indicator.py +80 -0
- backtrader/indicators/contrib/center_of_gravity_candle_indicator.py +83 -0
- backtrader/indicators/contrib/center_of_gravity_indicator.py +70 -0
- backtrader/indicators/contrib/cg_oscillator.py +40 -0
- backtrader/indicators/contrib/close_line_cci.py +38 -0
- backtrader/indicators/contrib/close_price_fractals.py +47 -0
- backtrader/indicators/contrib/color3rd_gen_xma_indicator.py +122 -0
- backtrader/indicators/contrib/color_bb_candles_indicator.py +108 -0
- backtrader/indicators/contrib/color_coppock_indicator.py +157 -0
- backtrader/indicators/contrib/color_hma.py +71 -0
- backtrader/indicators/contrib/color_j_variation_indicator.py +53 -0
- backtrader/indicators/contrib/color_metro_de_marker_indicator.py +78 -0
- backtrader/indicators/contrib/color_metro_stochastic_indicator.py +93 -0
- backtrader/indicators/contrib/color_metro_wpr_indicator.py +85 -0
- backtrader/indicators/contrib/color_schaff_de_marker_trend_cycle.py +92 -0
- backtrader/indicators/contrib/color_schaff_trend_cycle_indicator.py +203 -0
- backtrader/indicators/contrib/color_step_xccx_indicator.py +193 -0
- backtrader/indicators/contrib/color_x2_ma.py +49 -0
- backtrader/indicators/contrib/color_x_derivative.py +63 -0
- backtrader/indicators/contrib/color_zerolag_de_marker.py +84 -0
- backtrader/indicators/contrib/corrected_average_indicator.py +127 -0
- backtrader/indicators/contrib/darvas_boxes_system.py +73 -0
- backtrader/indicators/contrib/dema_range_channel_color.py +42 -0
- backtrader/indicators/contrib/derivative_indicator.py +95 -0
- backtrader/indicators/contrib/digital_ft01_indicator.py +112 -0
- backtrader/indicators/contrib/digital_macd.py +200 -0
- backtrader/indicators/contrib/donchian_channels_system.py +45 -0
- backtrader/indicators/contrib/dots_indicator.py +93 -0
- backtrader/indicators/contrib/ef_distance_indicator.py +82 -0
- backtrader/indicators/contrib/ema_rsi_va.py +80 -0
- backtrader/indicators/contrib/envelopes_jp_alonso.py +32 -0
- backtrader/indicators/contrib/f2a_ao_indicator.py +120 -0
- backtrader/indicators/contrib/fatl_filter.py +179 -0
- backtrader/indicators/contrib/fibo_candles_indicator.py +78 -0
- backtrader/indicators/contrib/fine_tuning_ma.py +100 -0
- backtrader/indicators/contrib/fisher_org_v1.py +102 -0
- backtrader/indicators/contrib/fisher_org_v1_sign.py +118 -0
- backtrader/indicators/contrib/force_index_ema.py +96 -0
- backtrader/indicators/contrib/force_index_ema_2.py +27 -0
- backtrader/indicators/contrib/forecast_oscilator.py +145 -0
- backtrader/indicators/contrib/fractal_amambk.py +81 -0
- backtrader/indicators/contrib/frama_series.py +84 -0
- backtrader/indicators/contrib/frasm_av2_indicator.py +104 -0
- backtrader/indicators/contrib/go_indicator.py +93 -0
- backtrader/indicators/contrib/hlr_indicator.py +95 -0
- backtrader/indicators/contrib/hma.py +50 -0
- backtrader/indicators/contrib/i4_drfv2.py +34 -0
- backtrader/indicators/contrib/i4_drfv3.py +38 -0
- backtrader/indicators/contrib/i_anch_mom_indicator.py +72 -0
- backtrader/indicators/contrib/i_de_marker_sign_indicator.py +64 -0
- backtrader/indicators/contrib/i_gap_indicator.py +45 -0
- backtrader/indicators/contrib/i_stoch_komposter_indicator.py +77 -0
- backtrader/indicators/contrib/i_trend_indicator.py +125 -0
- backtrader/indicators/contrib/iamma_indicator.py +39 -0
- backtrader/indicators/contrib/indexed_moving_average.py +33 -0
- backtrader/indicators/contrib/instantaneous_trend_filter_indicator.py +51 -0
- backtrader/indicators/contrib/inverse_reaction_indicator.py +41 -0
- backtrader/indicators/contrib/irsi_sign_indicator.py +95 -0
- backtrader/indicators/contrib/iwpr_sign_indicator.py +59 -0
- backtrader/indicators/contrib/j_brain_trend1_sig_indicator.py +233 -0
- backtrader/indicators/contrib/j_tpo_proxy.py +32 -0
- backtrader/indicators/contrib/jma_slope_indicator.py +73 -0
- backtrader/indicators/contrib/kalman_filter_indicator.py +119 -0
- backtrader/indicators/contrib/kalman_filter_line.py +127 -0
- backtrader/indicators/contrib/kama_indicator.py +150 -0
- backtrader/indicators/contrib/karacatica_indicator.py +99 -0
- backtrader/indicators/contrib/kdj_indicator.py +59 -0
- backtrader/indicators/contrib/kwan_ccc_indicator.py +195 -0
- backtrader/indicators/contrib/kwan_nrp_indicator.py +113 -0
- backtrader/indicators/contrib/kwan_rdp_indicator.py +192 -0
- backtrader/indicators/contrib/laguerre_adx_indicator.py +85 -0
- backtrader/indicators/contrib/laguerre_filter_indicator.py +66 -0
- backtrader/indicators/contrib/laguerre_plus_di_proxy.py +57 -0
- backtrader/indicators/contrib/laguerre_roc_indicator.py +81 -0
- backtrader/indicators/contrib/le_man_signal_indicator.py +63 -0
- backtrader/indicators/contrib/linear_reg_slope_v2_indicator.py +136 -0
- backtrader/indicators/contrib/loco_indicator.py +88 -0
- backtrader/indicators/contrib/lrma_indicator.py +185 -0
- backtrader/indicators/contrib/lsma_angle_indicator.py +106 -0
- backtrader/indicators/contrib/ma_rounding_channel_indicator.py +149 -0
- backtrader/indicators/contrib/macd2_indicator.py +61 -0
- backtrader/indicators/contrib/macd_candle_indicator.py +80 -0
- backtrader/indicators/contrib/malr_indicator.py +77 -0
- backtrader/indicators/contrib/momentum_candle_sign_indicator.py +51 -0
- backtrader/indicators/contrib/moving_average_fn_indicator.py +139 -0
- backtrader/indicators/contrib/mt5_stochastic_close_close.py +57 -0
- backtrader/indicators/contrib/muv_nor_diff_cloud_indicator.py +107 -0
- backtrader/indicators/contrib/non_lag_dot_indicator.py +124 -0
- backtrader/indicators/contrib/nrtr_extr_indicator.py +95 -0
- backtrader/indicators/contrib/nrtr_indicator.py +95 -0
- backtrader/indicators/contrib/p_channel_system.py +40 -0
- backtrader/indicators/contrib/percent_envelope.py +37 -0
- backtrader/indicators/contrib/percentage_crossover_channel.py +47 -0
- backtrader/indicators/contrib/pivot_zig_zag_proxy.py +47 -0
- backtrader/indicators/contrib/price_channel_stop_indicator.py +104 -0
- backtrader/indicators/contrib/price_extreme_channel.py +35 -0
- backtrader/indicators/contrib/qqe_cloud_indicator.py +129 -0
- backtrader/indicators/contrib/ravi_indicator.py +40 -0
- backtrader/indicators/contrib/raw_close_close_stochastic.py +74 -0
- backtrader/indicators/contrib/rd_trend_trigger_indicator.py +51 -0
- backtrader/indicators/contrib/renko_level.py +85 -0
- backtrader/indicators/contrib/renko_line_break.py +91 -0
- backtrader/indicators/contrib/rftl_indicator.py +41 -0
- backtrader/indicators/contrib/rkd_indicator.py +53 -0
- backtrader/indicators/contrib/roc2_vg_indicator.py +68 -0
- backtrader/indicators/contrib/rsi_histogram_indicator.py +43 -0
- backtrader/indicators/contrib/rsi_slowdown.py +57 -0
- backtrader/indicators/contrib/rsioma_v2.py +41 -0
- backtrader/indicators/contrib/rvi_histogram_indicator.py +107 -0
- backtrader/indicators/contrib/safe_adx.py +89 -0
- backtrader/indicators/contrib/shared_strategy_indicators.py +1651 -0
- backtrader/indicators/contrib/sidus_indicator.py +105 -0
- backtrader/indicators/contrib/silver_trend_indicator.py +79 -0
- backtrader/indicators/contrib/sliding_range_color.py +56 -0
- backtrader/indicators/contrib/slow_stoch.py +42 -0
- backtrader/indicators/contrib/smoothed_adx_indicator.py +86 -0
- backtrader/indicators/contrib/smoothed_rsi.py +31 -0
- backtrader/indicators/contrib/spearman_rank_correlation_histogram.py +60 -0
- backtrader/indicators/contrib/stalin_indicator.py +152 -0
- backtrader/indicators/contrib/starter_laguerre_filter.py +62 -0
- backtrader/indicators/contrib/step_manrtr_indicator.py +137 -0
- backtrader/indicators/contrib/stochastic_histogram_indicator.py +143 -0
- backtrader/indicators/contrib/t3_alarm_indicator.py +125 -0
- backtrader/indicators/contrib/t3_average.py +76 -0
- backtrader/indicators/contrib/t3_indicator.py +40 -0
- backtrader/indicators/contrib/the20s_v020_signal.py +93 -0
- backtrader/indicators/contrib/three_candles_indicator.py +70 -0
- backtrader/indicators/contrib/three_line_break_indicator.py +64 -0
- backtrader/indicators/contrib/time_line.py +57 -0
- backtrader/indicators/contrib/trading_channel_index_proxy.py +48 -0
- backtrader/indicators/contrib/trend_arrows_indicator.py +109 -0
- backtrader/indicators/contrib/trend_continuation_indicator.py +127 -0
- backtrader/indicators/contrib/trend_intensity_index_proxy.py +51 -0
- backtrader/indicators/contrib/trend_manager_indicator.py +39 -0
- backtrader/indicators/contrib/tri_x_candle_indicator.py +51 -0
- backtrader/indicators/contrib/trigger_line.py +66 -0
- backtrader/indicators/contrib/triple_ema_rate.py +34 -0
- backtrader/indicators/contrib/trvi_indicator.py +194 -0
- backtrader/indicators/contrib/two_pb_ideal_xosma_indicator.py +127 -0
- backtrader/indicators/contrib/ultra_absolutely_no_lag_lwma_color.py +92 -0
- backtrader/indicators/contrib/ultra_wpr_indicator.py +173 -0
- backtrader/indicators/contrib/up_down_candle_strength.py +68 -0
- backtrader/indicators/contrib/vinin_i_trend_indicator.py +139 -0
- backtrader/indicators/contrib/volume_weighted_ma_indicator.py +78 -0
- backtrader/indicators/contrib/volume_weighted_ma_st_dev_indicator.py +111 -0
- backtrader/indicators/contrib/vwap_close_indicator.py +65 -0
- backtrader/indicators/contrib/vwma_candle.py +57 -0
- backtrader/indicators/contrib/vwma_digit_system.py +70 -0
- backtrader/indicators/contrib/wami.py +43 -0
- backtrader/indicators/contrib/wprsi_signal_indicator.py +105 -0
- backtrader/indicators/contrib/x_de_marker_histogram_vol_direct_indicator.py +145 -0
- backtrader/indicators/contrib/x_fisher_indicator.py +64 -0
- backtrader/indicators/contrib/xcci_histogram_vol_direct_indicator.py +56 -0
- backtrader/indicators/contrib/xcci_histogram_vol_indicator.py +85 -0
- backtrader/indicators/contrib/xma_ichimoku.py +163 -0
- backtrader/indicators/contrib/xma_ishimoku_channel_indicator.py +65 -0
- backtrader/indicators/contrib/xma_ishimoku_line.py +68 -0
- backtrader/indicators/contrib/xma_range_bands_indicator.py +107 -0
- backtrader/indicators/contrib/xmacd_indicator.py +70 -0
- backtrader/indicators/contrib/xrsi_de_marker_histogram.py +67 -0
- backtrader/indicators/contrib/xrsi_histogram_vol_direct_indicator.py +52 -0
- backtrader/indicators/contrib/xrsi_histogram_vol_indicator.py +81 -0
- backtrader/indicators/contrib/xrvi_indicator.py +130 -0
- backtrader/indicators/contrib/zero_lag_macd.py +36 -0
- backtrader/indicators/contrib/zig_zag_recent_pivot_signal.py +90 -0
- backtrader/indicators/contrib/zpf_indicator.py +115 -0
- backtrader/indicators/crossover.py +337 -0
- backtrader/indicators/dema.py +175 -0
- backtrader/indicators/demarker.py +270 -0
- backtrader/indicators/deviation.py +284 -0
- backtrader/indicators/directionalmove.py +1071 -0
- backtrader/indicators/dma.py +112 -0
- backtrader/indicators/dpo.py +96 -0
- backtrader/indicators/dv2.py +56 -0
- backtrader/indicators/ema.py +145 -0
- backtrader/indicators/envelope.py +475 -0
- backtrader/indicators/hadelta.py +198 -0
- backtrader/indicators/heikinashi.py +153 -0
- backtrader/indicators/hma.py +153 -0
- backtrader/indicators/hurst.py +151 -0
- backtrader/indicators/ichimoku.py +267 -0
- backtrader/indicators/kama.py +181 -0
- backtrader/indicators/kst.py +159 -0
- backtrader/indicators/lrsi.py +125 -0
- backtrader/indicators/mabase.py +147 -0
- backtrader/indicators/macd.py +322 -0
- backtrader/indicators/momentum.py +267 -0
- backtrader/indicators/moneyflow.py +237 -0
- backtrader/indicators/mt5atr.py +124 -0
- backtrader/indicators/myind.py +179 -0
- backtrader/indicators/obv.py +94 -0
- backtrader/indicators/ols.py +265 -0
- backtrader/indicators/oscillator.py +161 -0
- backtrader/indicators/percentchange.py +83 -0
- backtrader/indicators/percentrank.py +46 -0
- backtrader/indicators/pivotpoint.py +469 -0
- backtrader/indicators/prettygoodoscillator.py +113 -0
- backtrader/indicators/priceops_ext.py +123 -0
- backtrader/indicators/priceoscillator.py +262 -0
- backtrader/indicators/psar.py +212 -0
- backtrader/indicators/rmi.py +69 -0
- backtrader/indicators/rsi.py +440 -0
- backtrader/indicators/sma.py +141 -0
- backtrader/indicators/smma.py +116 -0
- backtrader/indicators/spread.py +54 -0
- backtrader/indicators/stochastic.py +263 -0
- backtrader/indicators/supertrend.py +436 -0
- backtrader/indicators/trend_ext.py +105 -0
- backtrader/indicators/trix.py +202 -0
- backtrader/indicators/tsi.py +155 -0
- backtrader/indicators/ultimateoscillator.py +158 -0
- backtrader/indicators/vortex.py +62 -0
- backtrader/indicators/williams.py +194 -0
- backtrader/indicators/wma.py +103 -0
- backtrader/indicators/zlema.py +135 -0
- backtrader/indicators/zlind.py +104 -0
- backtrader/linebuffer.py +3155 -0
- backtrader/lineiterator.py +2911 -0
- backtrader/lineroot.py +1106 -0
- backtrader/lineseries.py +2559 -0
- backtrader/live_trading/__init__.py +31 -0
- backtrader/live_trading/interface.py +404 -0
- backtrader/mathsupport.py +94 -0
- backtrader/metabase.py +1804 -0
- backtrader/mixins/__init__.py +21 -0
- backtrader/mixins/singleton.py +118 -0
- backtrader/observer.py +106 -0
- backtrader/observers/__init__.py +45 -0
- backtrader/observers/benchmark.py +126 -0
- backtrader/observers/broker.py +184 -0
- backtrader/observers/buysell.py +144 -0
- backtrader/observers/drawdown.py +161 -0
- backtrader/observers/logreturns.py +113 -0
- backtrader/observers/timereturn.py +86 -0
- backtrader/observers/trade_logger.py +2972 -0
- backtrader/observers/tradelogger.py +6 -0
- backtrader/observers/trades.py +258 -0
- backtrader/order.py +1114 -0
- backtrader/parameters.py +2345 -0
- backtrader/plot/__init__.py +54 -0
- backtrader/plot/finance.py +1022 -0
- backtrader/plot/formatters.py +200 -0
- backtrader/plot/locator.py +353 -0
- backtrader/plot/multicursor.py +495 -0
- backtrader/plot/plot.py +2500 -0
- backtrader/plot/plot_plotly.py +1351 -0
- backtrader/plot/scheme.py +253 -0
- backtrader/plot/utils.py +104 -0
- backtrader/position.py +290 -0
- backtrader/position_modes.py +132 -0
- backtrader/profiles.py +254 -0
- backtrader/reports/__init__.py +39 -0
- backtrader/reports/charts.py +371 -0
- backtrader/reports/performance.py +620 -0
- backtrader/reports/reporter.py +660 -0
- backtrader/resamplerfilter.py +1001 -0
- backtrader/signal.py +118 -0
- backtrader/signals/__init__.py +17 -0
- backtrader/sizer.py +114 -0
- backtrader/sizers/__init__.py +26 -0
- backtrader/sizers/fixedsize.py +161 -0
- backtrader/sizers/percents_sizer.py +119 -0
- backtrader/store.py +221 -0
- backtrader/stores/__init__.py +33 -0
- backtrader/stores/btapistore.py +15506 -0
- backtrader/stores/livestore.py +137 -0
- backtrader/stores/vchartfile.py +96 -0
- backtrader/strategy.py +3655 -0
- backtrader/talib.py +280 -0
- backtrader/test_helpers.py +96 -0
- backtrader/timer.py +358 -0
- backtrader/trade.py +442 -0
- backtrader/tradingcal.py +361 -0
- backtrader/utils/__init__.py +68 -0
- backtrader/utils/autodict.py +251 -0
- backtrader/utils/date.py +71 -0
- backtrader/utils/dateintern.py +509 -0
- backtrader/utils/flushfile.py +94 -0
- backtrader/utils/fractal.py +101 -0
- backtrader/utils/get_metrics.py +101 -0
- backtrader/utils/load_data.py +209 -0
- backtrader/utils/log_message.py +998 -0
- backtrader/utils/ordereddefaultdict.py +75 -0
- backtrader/utils/py3.py +296 -0
- backtrader/version.py +21 -0
- backtrader/writer.py +372 -0
|
@@ -0,0 +1,465 @@
|
|
|
1
|
+
back_trader_python-1.4.0.dist-info/licenses/LICENSE,sha256=Czg9WmPaZE9ijZnDOXbqZIftiaqlnwsyV5kt6sEXHms,35821
|
|
2
|
+
backtrader/__init__.py,sha256=NAusC6CdbONKzJN3uSJ8vPZzRfoLomvL0c8RESNjARs,4987
|
|
3
|
+
backtrader/analyzer.py,sha256=K4MpwXRtHod8J8SZUQTvk-mSMAfZuo1qZr90A07oYH8,21353
|
|
4
|
+
backtrader/broker.py,sha256=pXBOvMkMn9aG8hrYdJB36BtJijVDXyhZwHbA0bZarhM,14671
|
|
5
|
+
backtrader/cerebro.py,sha256=3ATYPY9hBGLmtIXdeL0IR1G_njtPz1rENYvVmRBSPbA,33740
|
|
6
|
+
backtrader/channel.py,sha256=f5cGx8vHx10z5X9MlDTo8-6F7bdflWFXo76UzYmpbSs,22492
|
|
7
|
+
backtrader/comminfo.py,sha256=i3g6WPeofMT_5oTC6MWhrmSDeZHa2hylTuFQmPGnbLs,25707
|
|
8
|
+
backtrader/dataseries.py,sha256=HWvBMXrI8iR2QjnDkfIdqtWWG9VkhXAxw1Y6taNLMFQ,11848
|
|
9
|
+
backtrader/errors.py,sha256=EK7svfc4EjVSbWfnMvtsBRl4CVSUmpmE2D8NIf-k78Q,3564
|
|
10
|
+
backtrader/events.py,sha256=lDDj875IrUwj_OZF2hogd3yMS9nyfqY1rZvLDS2_LE8,29337
|
|
11
|
+
backtrader/feed.py,sha256=03K2rlHS92lsiZB4GwdE-pHIYjvWIespQT7D2eWrb-E,56321
|
|
12
|
+
backtrader/fillers.py,sha256=-Iseho4gqHIQatcYeOcvMJqhU1LcyP--HEk2Ykh36Gw,5198
|
|
13
|
+
backtrader/flt.py,sha256=KDp43MnSdwHoRJusZcJyPp5TJ16G-I_GDLe2q5cQOWE,2160
|
|
14
|
+
backtrader/functions.py,sha256=CJEOs8G1b9ly12Bmoj8S2BkAX3tgXHQmJNlmcPjEVio,32750
|
|
15
|
+
backtrader/indicator.py,sha256=Pd2PXcDeOy4XOGnC-x--6oFDhjZoC7gEGp3zuJLj2h8,18228
|
|
16
|
+
backtrader/linebuffer.py,sha256=7ZBHvo4yph0qSxNq0a1z5mOIJOMlJ_djhT_ECZvc6RQ,125989
|
|
17
|
+
backtrader/lineiterator.py,sha256=MHAKieud95OmdnE-FV3ihYgX73-1NnmB-eb_MX3s1UE,114158
|
|
18
|
+
backtrader/lineroot.py,sha256=MXFfD-uKI9m0Af0GeyU_jOrKpHCN5cFoCr-3v2dsUpA,42889
|
|
19
|
+
backtrader/lineseries.py,sha256=SSyp7lqIBX6CHkFAHYlUpdXppkWEe6hSVTqHmHXgIkk,93619
|
|
20
|
+
backtrader/mathsupport.py,sha256=vFfN-PROPae2vPW1w1Dzd1-g8k240JkDUFRBm6clajI,3119
|
|
21
|
+
backtrader/metabase.py,sha256=0o4JjmaJGwqc1V44VwMOI9JPHfXPuANx2aZmv8uGWo0,75883
|
|
22
|
+
backtrader/observer.py,sha256=I_Nlp9sHvE5O_KhKpdVe1N_UieBjWYiH3wdKBllGJIc,3673
|
|
23
|
+
backtrader/order.py,sha256=cXuYDSr98KajNbEHG4Z6c_7npuP-8BlXeoAPFmtWqxk,38069
|
|
24
|
+
backtrader/parameters.py,sha256=muidjdpDIDqQvKui0SuwkAwZFd5fWsBotARVdc5TD2Y,85987
|
|
25
|
+
backtrader/position.py,sha256=uSF3LnRiilDj3-aKUj5CEfHsFbBWpKhqmpzegBPXkPE,11583
|
|
26
|
+
backtrader/position_modes.py,sha256=OawZF0DTaka6jz8AO_-KwX7LH63uh4Zgdjp1IvefV2w,4435
|
|
27
|
+
backtrader/profiles.py,sha256=hoDYgRuiDcTtJpa482cdgQrATb_GzHaP0r73uQc1z-M,10899
|
|
28
|
+
backtrader/resamplerfilter.py,sha256=xW1iSur6IJMrDMLnm7oLyoGotjbfWZladFLJ2roKntI,37732
|
|
29
|
+
backtrader/signal.py,sha256=-3d8_-Z34EGPca38FGxK206skFX-gBIkETkC2sfnvX8,3556
|
|
30
|
+
backtrader/sizer.py,sha256=rPUGsIczTslkZIjxejve6kMRUf-dQOV_yS9KZqWf1Bw,3960
|
|
31
|
+
backtrader/store.py,sha256=twVql_uaSzucNvbkCRQdmFr37FhhsxT3gkOtyhds9H8,7768
|
|
32
|
+
backtrader/strategy.py,sha256=RCJsrKPO6SOLwBrW_Jg4_I9S0WaL9SnFrCnDc4M6OPg,144431
|
|
33
|
+
backtrader/talib.py,sha256=cvn3vGIuIkjMk2xnY6c52Q8mIXk2MN8HDRYgKC2g3NE,10588
|
|
34
|
+
backtrader/test_helpers.py,sha256=oB28dfFHylq5NRbjYTWUQ3t2Ou8Sr_nGIXT8qw6HF84,3291
|
|
35
|
+
backtrader/timer.py,sha256=N6ZkkPuq-s3S-2evEaV2mrK9DFL85H18dq7RZmX9BGs,16159
|
|
36
|
+
backtrader/trade.py,sha256=Hepg_lIB5RoUjbxmzoysb7WoNr0BffnMCBNf03f4aJc,17277
|
|
37
|
+
backtrader/tradingcal.py,sha256=zC1M03UW_uJQUe03SDMVbRs579ZsL8yqAjBGfHnX6Gk,13896
|
|
38
|
+
backtrader/version.py,sha256=wcYADkp4UHt3xcC2VHScspFVV-TrPV-ONq8HPKkNnGg,556
|
|
39
|
+
backtrader/writer.py,sha256=HAS9mWAlQls3q8Tf7m8tuHEsC2P1ZUMewZ4M17IBtUI,13055
|
|
40
|
+
backtrader/_cerebro/__init__.py,sha256=_2KKi6vXF_bxyTAAgBNvQBKL4gKDyrL15kEbkuYloPY,193
|
|
41
|
+
backtrader/_cerebro/channel.py,sha256=Uc59yKBU-_JxBK8Y3JLkNegPxiby4HsNle0aHGrmMLc,15481
|
|
42
|
+
backtrader/_cerebro/execution.py,sha256=Rzt98Qtb2QToHH1pKGX5XkwhW1EayPlniHIvNZLx73U,16104
|
|
43
|
+
backtrader/_cerebro/lifecycle.py,sha256=XYim4zc4sY3R2zsuURpeOfPw6tFIQQqPZmkeeN1l35U,5895
|
|
44
|
+
backtrader/_cerebro/notifications.py,sha256=iPbz9r_8ZHhXP-lPx2yfpecu9Ba2bcOAw0QI5lEL7R8,6105
|
|
45
|
+
backtrader/_cerebro/presentation.py,sha256=XV5ZrLEmb0pFiE3q-SZhej3th1Gffi7V2vO9IYTGFZA,8309
|
|
46
|
+
backtrader/_cerebro/registry.py,sha256=YlcoN4vCuZDTg0rb9aHTNl5UgJpkhNdZ8zBZeHgHE9g,21906
|
|
47
|
+
backtrader/_cerebro/runnext.py,sha256=KE3nkngd9CFdsCwOgWma-4CgG2Mae0NduT9GeGdRiLI,25784
|
|
48
|
+
backtrader/_cerebro/runonce.py,sha256=GLomJnA8SpSfh7H__L0hziXG6M0lm2-X8U8dgFtEOuw,5264
|
|
49
|
+
backtrader/analyzers/__init__.py,sha256=7azLqYCGs-bU0MS6e4Jalekq7KsBdsjXw0Me_Nwf1Ec,1582
|
|
50
|
+
backtrader/analyzers/annualreturn.py,sha256=Bvlij2DTpBl23kJoJRAegSAWSLeTqgSSzE9ZJ5nMLH4,7684
|
|
51
|
+
backtrader/analyzers/calmar.py,sha256=ZhSrPiwtTLsW6hSHb1LDfAqcCr7G0TYF0pN0Vh0GY5A,5664
|
|
52
|
+
backtrader/analyzers/drawdown.py,sha256=BisLlZ5kFJ1NXXhDBSb03uivTDl_3VDWTwQtinQHp34,9531
|
|
53
|
+
backtrader/analyzers/leverage.py,sha256=-oJr2AydJXce_WEg7hX-DWTQof0Pbbj_bQqHIMH7RXQ,3508
|
|
54
|
+
backtrader/analyzers/logreturnsrolling.py,sha256=4VGm19qIyJbCZ1n6hVIz78WqSsmxofR8QhX0RjGDulU,6823
|
|
55
|
+
backtrader/analyzers/periodstats.py,sha256=do68zA1BErDiknbjEzaiRu6cdLgJm5G6J5-OJD5x7Sk,4822
|
|
56
|
+
backtrader/analyzers/positions.py,sha256=d8sWS5azjX6KFM8scXvaWnmYyfCeWOy_3qwjZeqs6sM,3728
|
|
57
|
+
backtrader/analyzers/pyfolio.py,sha256=OF72t_HdB-xSOomL0Qr0tMjFczqH9RanOAN-5JhAL-E,19791
|
|
58
|
+
backtrader/analyzers/returns.py,sha256=kX1KyzmMov7V1QXaRLYghBmUEIAOzMwb1U9P_SyB4o8,6056
|
|
59
|
+
backtrader/analyzers/sharpe.py,sha256=kXFTxUEnzCpaGcYyOFauZ2EgMVj1kqJvtDBvT1B9JyA,11978
|
|
60
|
+
backtrader/analyzers/sharpe_ratio_stats.py,sha256=gXMeezNyQb1HMZVh7LizaxLbzXwODaLEIiTpf7ftwL4,18456
|
|
61
|
+
backtrader/analyzers/sqn.py,sha256=QA_zktObX3EQp7SyNfsmrFIsZ2OShny39_W209x6_mE,3334
|
|
62
|
+
backtrader/analyzers/timereturn.py,sha256=nbnYfxzfn7FbqAgBQOSGlh-mTSKuO_kVAO4vctyXIgg,6764
|
|
63
|
+
backtrader/analyzers/total_value.py,sha256=B-LwkIO1pRA0Sk0e0leulUEREOYIqjMZVZtGlVVwfBQ,2046
|
|
64
|
+
backtrader/analyzers/tradeanalyzer.py,sha256=RBCSMlEKPg_N2zSGCB7yJJG-keqoxnH9I_0n5sGjWgU,9913
|
|
65
|
+
backtrader/analyzers/transactions.py,sha256=fZGx-BL2rtodRcI8IjQCjokYgnbloBQZPWwRbrW6gyU,4763
|
|
66
|
+
backtrader/analyzers/vwr.py,sha256=wDJ8-mb4FDwRXbrvYMH05ggxwhOVvp_GQKLTZftXqmI,7846
|
|
67
|
+
backtrader/bokeh/__init__.py,sha256=Y3M4xMLw7YG09CCJXoTF4K1owOh1t4yvhnwY8zhZhcg,4230
|
|
68
|
+
backtrader/bokeh/app.py,sha256=-qikNVNp0hA4Kn0HfsjO4FyL-wDo7bMZ85JJbv3ump8,33290
|
|
69
|
+
backtrader/bokeh/plot_adapter.py,sha256=griQzLq9OCvRync66jSwlxVHZB0ruC2gxshzwj9P27Y,6258
|
|
70
|
+
backtrader/bokeh/tab.py,sha256=UUHKeltUpD6g1hg6vWK2VMjHhbrFXuUN4ySS3BHEPDg,3201
|
|
71
|
+
backtrader/bokeh/webapp.py,sha256=4hK6ueUH7g1kkDj-p0JwCI0Fj9US27iAwjqodSoPoO0,4443
|
|
72
|
+
backtrader/bokeh/analyzers/__init__.py,sha256=bduPmeCCVum6vaw_DVepoPETxad17jGieRd-zMhd_2k,303
|
|
73
|
+
backtrader/bokeh/analyzers/plot.py,sha256=OOFF6NFkaAOdO84GV2exIcUOTHQhZduIVGwUbLCgdao,5336
|
|
74
|
+
backtrader/bokeh/analyzers/recorder.py,sha256=aqwg9OtkSoM5AUHHQu5usVsypq9bu5QjVfNqRVe4Vao,5779
|
|
75
|
+
backtrader/bokeh/live/__init__.py,sha256=35-xxwQNh88cr9mBdcfOiRYXq0tyuXNP3rkKBVpN17I,248
|
|
76
|
+
backtrader/bokeh/live/client.py,sha256=YNRwNHpCWOa7xLRVSrB7sBhlFICi7m8_Epw8QIj7w_8,10371
|
|
77
|
+
backtrader/bokeh/live/datahandler.py,sha256=ctuBnMUOjGHYcWvl75GcbEjB_KjPKYAwdGMl6OGC3ys,10974
|
|
78
|
+
backtrader/bokeh/schemes/__init__.py,sha256=_ESU0g_cSNR3zfqHcy4dU_20NetD2CUStJyy3JQ-sVM,266
|
|
79
|
+
backtrader/bokeh/schemes/blackly.py,sha256=kmmAJVWfD1KLcfzxosvpU6uNNPFCPMdbAxRC-qfkYZk,2533
|
|
80
|
+
backtrader/bokeh/schemes/scheme.py,sha256=RHzhGBosrnVJNmrI10AnXLEI_zicsXx2klmoXEthBOA,5878
|
|
81
|
+
backtrader/bokeh/schemes/tradimo.py,sha256=ZbVKY9dKZCajaDEnd9occQM7wWA6SMEvdUvG0Zj5lhY,2659
|
|
82
|
+
backtrader/bokeh/tabs/__init__.py,sha256=7ziLS0avNjItlANP3aFb_pnM2UDBGuDKk5hrvyu23H8,649
|
|
83
|
+
backtrader/bokeh/tabs/analyzer.py,sha256=rpxVp9G9RlAyayVUw4_R8Ui_WpyvJ9XeLEttNcTJ9YU,3383
|
|
84
|
+
backtrader/bokeh/tabs/config.py,sha256=T8nO0AmtNredzranB_gOoRlv7NOgEG--PRKOtaIgah4,4948
|
|
85
|
+
backtrader/bokeh/tabs/live.py,sha256=BRf_0S-YeYsJ8uLjyTy3tieyppao3tfpKGYuVWwwN2k,3263
|
|
86
|
+
backtrader/bokeh/tabs/log.py,sha256=7oat5q23nWhk2weSDEPuCIw0lrN_5Ed-kJEwMYZbLaI,4843
|
|
87
|
+
backtrader/bokeh/tabs/metadata.py,sha256=ob5BQgZCJ7qJmIONqN0sAcEe1ElHwlaKbPDjLV0e6LE,5775
|
|
88
|
+
backtrader/bokeh/tabs/performance.py,sha256=EwUGt5wt-QINyLK3dwaNC6Fn562jZI-aQGTFSoTXcR8,13293
|
|
89
|
+
backtrader/bokeh/tabs/source.py,sha256=DKggGniCr9DCngmDxQ1fSnY3GONUTD3WW3Q7Y7RNYI8,1575
|
|
90
|
+
backtrader/bokeh/utils/__init__.py,sha256=3pntn-gT9ZTAH3FdvJH_fYxtpqHTh6rRom7q5tSey0Y,209
|
|
91
|
+
backtrader/bokeh/utils/helpers.py,sha256=8mSHxstQHbn-DPvSj6tnjtr6TrBN-29kZ0mFNlZ7ku8,3695
|
|
92
|
+
backtrader/brokers/__init__.py,sha256=OKtu5S7pjWA2jEeLxf9sVnFjPjcZr1rVMr2mYUvMHeo,1199
|
|
93
|
+
backtrader/brokers/bbroker.py,sha256=2sIEDxaFuD2cuzevsNclhFbYRoVS7g0sqBPRg4hpXCk,101568
|
|
94
|
+
backtrader/brokers/btapibroker.py,sha256=PHINPATznBIicc0Rpjpn_J3GDCrIU2BW_XSBo5n08SM,346932
|
|
95
|
+
backtrader/brokers/impact_models.py,sha256=AeCPDyueSC1PetGihYwoW1hqLRMzqoIx0mxt0Pe7f9Y,3707
|
|
96
|
+
backtrader/brokers/mixbroker.py,sha256=zL45AS86_G8W28ld9F4xjQ0WxlXLSSw929zqq5oOphM,35545
|
|
97
|
+
backtrader/brokers/tickbroker.py,sha256=Umbw_nM9bfRAWq7RV43z6cSYLcUSwP9PhsKnP-2NXxw,86826
|
|
98
|
+
backtrader/brokers/hft/__init__.py,sha256=S-QuVG1PUcIHmhZn9TB-ua5Gty20Fkhyn-6mvVi3c-M,2717
|
|
99
|
+
backtrader/brokers/hft/binance_bbo.py,sha256=Qmxy41fPOIsrqYF-lmtGOJbNNZ-Zp57x7_N_-uXWgFo,23283
|
|
100
|
+
backtrader/brokers/hft/binance_bbo_compare.py,sha256=9xyAEMEmQNAuZZTBKHjs5R0V0TTWvM3_JQHZFIRkT2Y,51601
|
|
101
|
+
backtrader/brokers/hft/examples.py,sha256=Niy8AQFggvBGAAEBC5-g0DSptD8ZPyipBsnfcTTpT4E,47942
|
|
102
|
+
backtrader/brokers/hft/exchange.py,sha256=3bWf8XpLd1lvHaHfcXi91nxcKKGMX7S86UuNom8cBfE,15637
|
|
103
|
+
backtrader/brokers/hft/latency.py,sha256=fnZ5QNu9dYD8zoK_idD1Atb2cG7ijcAqh10DV7ZUJmQ,11978
|
|
104
|
+
backtrader/brokers/hft/matching_core.py,sha256=rfg1miCZ_3vCT5REL334HtHVHDoBAK4I2yFJYDXfw0M,23911
|
|
105
|
+
backtrader/brokers/hft/queue.py,sha256=TUBPMMTbydpRLDWhkeiZiESfmqRdENEhhMDQmfdo438,10537
|
|
106
|
+
backtrader/brokers/hft/recorder.py,sha256=zSffcEWUZD_ShDqTJGk-3mYW57u8Etgmef2IvVxpgUM,3630
|
|
107
|
+
backtrader/brokers/hft/state.py,sha256=cjt_SaA54ydxRJ1J9cQUtRbXbCQQ1vKku5uAmeuA3Ew,5254
|
|
108
|
+
backtrader/btrun/__init__.py,sha256=RoYl2MEa6ayQpy4IUYNN7I19aA-PAuqQ4ivGESnB364,341
|
|
109
|
+
backtrader/btrun/btrun.py,sha256=o9-PkCoyriqB5l1NRzqdVG_yuQN346k95NTe3qOT94A,38169
|
|
110
|
+
backtrader/channels/__init__.py,sha256=kQr7-VpzPhOwlWOJoS4XqSRz95ZTezxbMQ3d4Vs1zho,650
|
|
111
|
+
backtrader/channels/bridge.py,sha256=nRPUmPDm5i3nhKdv2K7JYx0JjJqUmzOrUrpC1pZINqY,5900
|
|
112
|
+
backtrader/channels/funding.py,sha256=ayso0YBHljgUuaPBUmcYj6TkS08d5F0-WjoX7KwQnco,9115
|
|
113
|
+
backtrader/channels/live_queue.py,sha256=7Ipvvh50jFufBtkS7gTV0I9wmtuJ2AWjKYwkZ2Ty04g,6561
|
|
114
|
+
backtrader/channels/live_validator.py,sha256=gAHKWBiqN5-igHBvqH3WuE4AnwB_4CIQNxY8APXgwUs,10363
|
|
115
|
+
backtrader/channels/orderbook.py,sha256=HVrcUgJ3OFiKHWXlkLbHGHMRG6jDnnqfljWeaCbGX2k,8828
|
|
116
|
+
backtrader/channels/tick.py,sha256=sbVjWKaylJPWchC-OHiD03WYvaDIWmAvH-CawNhTIwc,6954
|
|
117
|
+
backtrader/commissions/__init__.py,sha256=tFshBfs_o_sUDRY9Gxjt4Sl27tQB-vhmQBsZFtgw8hA,2891
|
|
118
|
+
backtrader/commissions/ctpoption.py,sha256=nihFoQA7757NGQj3N1AKv71ambHyiZ11bwNYlcrUJE8,39178
|
|
119
|
+
backtrader/configs/account_config_example.yaml,sha256=_BCTDjm41_DElwLNIFYN9aRPoZtDLljSmsnH4Md92lc,121
|
|
120
|
+
backtrader/feeds/__init__.py,sha256=k3zw4y8pfpPZROU3Nxz6_jeVMAt8jMU8jRcmbjKEGNM,2828
|
|
121
|
+
backtrader/feeds/barrier.py,sha256=TBzBw4_FenpX5426ypAE4uLUkSP3AvOnMuR1d9vQQzE,91921
|
|
122
|
+
backtrader/feeds/blaze.py,sha256=RjHlitnP8IukPQmpqxx0xMKrve9yG_Iv09u-vBR6aqI,3438
|
|
123
|
+
backtrader/feeds/btapifeed.py,sha256=Xkgyw1UAngGAUlXiEHUf_rBrTjg3TqDK_PJO1NVvP1I,66678
|
|
124
|
+
backtrader/feeds/btcsv.py,sha256=i7NWiOdjHongylST2aKx5yD6XMDI4AWHm02C_Td1bqs,6545
|
|
125
|
+
backtrader/feeds/chainer.py,sha256=-HM0M9_HFUR0_-S3YkzbAnGK9kZFj2P--0m5ptJVBqI,3490
|
|
126
|
+
backtrader/feeds/cryptohftdata.py,sha256=aLWeY_v1Cav23PavTuQqF_nzWHEioiwHQ6UEhk4rjKs,6111
|
|
127
|
+
backtrader/feeds/csvgeneric.py,sha256=VvduXKnt_SB9dqQ09AsNjiIVPLlxCh_Dip0skmX8F6g,46846
|
|
128
|
+
backtrader/feeds/ctpcohort.py,sha256=8IWQA1Cajyh9ME7dZgO25N-AHBs-my5To8VNeebPf7c,44817
|
|
129
|
+
backtrader/feeds/influxfeed.py,sha256=CPJVgDajHHMm6mH3EkU6yhie4wUWNGSDaylqZxeN1Fk,4920
|
|
130
|
+
backtrader/feeds/livefeed.py,sha256=msd4Hgk8G027TxA7-VQUVDifYpvv7zLTlGkNrShkvtg,2294
|
|
131
|
+
backtrader/feeds/mixed_channel.py,sha256=f2tWN_lVD8K-7cvFr56AUaJcgTDIi9UsGQrXK89tryw,3839
|
|
132
|
+
backtrader/feeds/mt4csv.py,sha256=jbgQNFfOgWZhu-Xek7RtXSHx9d2Ri04iJsD_f7xBGcU,1043
|
|
133
|
+
backtrader/feeds/pandafeed.py,sha256=wPajkENdvbbFuxTUxFDiVJhHUpz6P0LUWfxALftlKVI,13412
|
|
134
|
+
backtrader/feeds/quandl.py,sha256=iIJVs8Ekp2Z3UrvBkBuGh-tFZ4SoJ04WV4Il9mp3ZO8,7038
|
|
135
|
+
backtrader/feeds/rollover.py,sha256=w6A67vzfsv7gaRxFC_0IB_1ErPJOtR7rgbY7jhyfnA4,8113
|
|
136
|
+
backtrader/feeds/sierrachart.py,sha256=HzIVF1VkfhA5wV_KkJiTbqtzKhhtkJolKG6GY_VHTjE,805
|
|
137
|
+
backtrader/feeds/vchart.py,sha256=qJahBomNTEGTr-Cc1B_b2N0gWp0N4J9JCVDgjKNrWxg,4480
|
|
138
|
+
backtrader/feeds/vchartcsv.py,sha256=mb-KOonbqYyfg3IzzQ0GxcaF3Vvv-AgBTYt_M2PEtQA,2262
|
|
139
|
+
backtrader/feeds/vchartfile.py,sha256=B7sIcohiQB88gTVgumH6pdJmGIqbwNjGNi1tFW63aS4,4565
|
|
140
|
+
backtrader/feeds/yahoo.py,sha256=2DPUILgCqaE0NLi1VJA4OTVIllQfgorWeS92oNjmgok,12597
|
|
141
|
+
backtrader/filters/__init__.py,sha256=kLuPWPtdQetqgPqpD2xgI0-RsHgaSnooIkpvosAnJUo,1181
|
|
142
|
+
backtrader/filters/bsplitter.py,sha256=-Qw8HxNzB4q2N7D4yI3jpW1DXTtgyROIfJV0l0Alx6M,4149
|
|
143
|
+
backtrader/filters/calendardays.py,sha256=7Q2vWkouQuCghXY8p7fyVTDZbxRXCKJMlxx5wCBPSzI,3508
|
|
144
|
+
backtrader/filters/datafiller.py,sha256=YYLv5ZI6Ycs8cGMee1Cqjk21WOEJGyKWxO6G1318bG4,6550
|
|
145
|
+
backtrader/filters/datafilter.py,sha256=yv_rnJPQ_E-b9M7NL9ZfCa8yMTgN75pBy-PWRXWvOE4,2499
|
|
146
|
+
backtrader/filters/daysteps.py,sha256=itBlDKAFuzV8LWcZyBK68tM7H_lmjAmNHRjkBsUCxrM,3248
|
|
147
|
+
backtrader/filters/heikinashi.py,sha256=H155b7qW3f6dvXSxJEOTXxzqK9kBK0Xl9LJfWmn63H4,1967
|
|
148
|
+
backtrader/filters/renko.py,sha256=ZcadaW_cUlSvxTrO8NaqZou2jGQfoU2l00KOtocjj00,5353
|
|
149
|
+
backtrader/filters/session.py,sha256=sZsvz5iQEfqcZekHPLXg-m5htZKE-YenXWXGBxJSh-E,9689
|
|
150
|
+
backtrader/indicators/__init__.py,sha256=z5-d2f6BpZmlTqWyFFPvFmPjagHHtvJ3gUOlU7UpvHk,4875
|
|
151
|
+
backtrader/indicators/accdecoscillator.py,sha256=tobQ46LGJqPreuKidw1Azlt_uzX_zKCKT66iAbl8Q3Q,3174
|
|
152
|
+
backtrader/indicators/aroon.py,sha256=7U7TmBXZhpihQQn6Nc0vHvrDKPc9jFNsmOQe6ONV8R4,9062
|
|
153
|
+
backtrader/indicators/atr.py,sha256=5TiMm0_HEcFIEbkavHjIHbKmfRtVNqUuugFR4Jnwg88,10283
|
|
154
|
+
backtrader/indicators/awesomeoscillator.py,sha256=nTSpt3ex0bwrhxxJOf7_K9l6JYEU-K4TYFYuz0Bhzr0,3502
|
|
155
|
+
backtrader/indicators/basicops.py,sha256=FDvM0NxVqjfTpnAblTAGB8Ix_qixz8dqW31XUkeixsA,25429
|
|
156
|
+
backtrader/indicators/bollinger.py,sha256=Qokivj6ecxrzqOxXpyR9oTdE7MKnXjbi2ENoncXLtm0,6597
|
|
157
|
+
backtrader/indicators/cci.py,sha256=6G3wXX4jXL9iMoUFhfB-ZviIg3b2j5CtJoiUGNSOXuo,2765
|
|
158
|
+
backtrader/indicators/channels_ext.py,sha256=sLQtrcqLxVglWtqq_0djgR0R6Q7d50XQ3vM21z_lyDk,2832
|
|
159
|
+
backtrader/indicators/crossover.py,sha256=zALNqbY4piSbL4O0mxfACmvi00COb2d835uFkQiuQ2s,13303
|
|
160
|
+
backtrader/indicators/dema.py,sha256=NN0GIloFPL4hoh-rAs8f83mdSHdIDqPlBb_XFxUPyAg,5592
|
|
161
|
+
backtrader/indicators/demarker.py,sha256=CogozP0tHWn3aLJubB80pW3MuGkbhXOG2ZsMjLUGgNw,10266
|
|
162
|
+
backtrader/indicators/deviation.py,sha256=kLnFPvojPuuhdK8IEHLi3D8E38OXty-aAcnA2_7ohfY,9078
|
|
163
|
+
backtrader/indicators/directionalmove.py,sha256=Y3oIdQ-KmIdk8bb059zEZvaJjNaxJFUuXD_fvWc6QvA,37301
|
|
164
|
+
backtrader/indicators/dma.py,sha256=ZCejD4VAwHE8V5HADcXESbtz9F8IrLWRijsOFXspg8w,3464
|
|
165
|
+
backtrader/indicators/dpo.py,sha256=BvO60IbW6OXF99k_QYayR-sqZKQJJ4eKcJ1FolJYAKQ,2815
|
|
166
|
+
backtrader/indicators/dv2.py,sha256=raPHWGesbEDoUW6kwQs2bPe5UaL2twslzwjt4U8V3O4,1394
|
|
167
|
+
backtrader/indicators/ema.py,sha256=Qm8Dq2xP1g2zeqOej23hde5b3VSUSDTqxaiKoOU8I_U,4524
|
|
168
|
+
backtrader/indicators/envelope.py,sha256=Fim6hL9SttJBBYzFbkEPhCLzNwbdHHVIj8DBQJ8eENw,14512
|
|
169
|
+
backtrader/indicators/hadelta.py,sha256=dUhCRYb1o6t7qR2wt6CQPJWA8Fag9nbHMZ7uxvqeiJc,6137
|
|
170
|
+
backtrader/indicators/heikinashi.py,sha256=-P3He1Vk2iwC6r0n5nMlyPYtmOFf-1dZasDWgyv-6PA,4980
|
|
171
|
+
backtrader/indicators/hma.py,sha256=U0-9QGqOP-DV-y4JZ_hzEx8EyO5YCMhEsplwi7HLfmg,5173
|
|
172
|
+
backtrader/indicators/hurst.py,sha256=wic7VbLpxXkkVZP5GYsbkyhEumIFeK6_diM8sRY5TIY,5269
|
|
173
|
+
backtrader/indicators/ichimoku.py,sha256=6wjP_uPk0eCWmiSI4bd2ecTIiLq53ak1SDR8CReVPME,10234
|
|
174
|
+
backtrader/indicators/kama.py,sha256=XE0DV5c907xWv3YGhz7DXAvsWBOLmYzi3n7-xPHjeTs,5856
|
|
175
|
+
backtrader/indicators/kst.py,sha256=tB0KWjK8Ka4R4ioiVk8QUQkW63oXNU-akTn87Sqiwio,5359
|
|
176
|
+
backtrader/indicators/lrsi.py,sha256=q96YlnjvVETKv2KpQDG8VJ884gdWgBJ2CNwx8EwhOlw,3637
|
|
177
|
+
backtrader/indicators/mabase.py,sha256=leNoAU51LG94j8rnm52eXDIpLkkkBhpcd33gSDTnd2U,5335
|
|
178
|
+
backtrader/indicators/macd.py,sha256=n9c_vZAeqMfu25yv7QWCBiuj9QhWk6fGGDfHu9lJly8,10540
|
|
179
|
+
backtrader/indicators/momentum.py,sha256=oapScLpYshq8Lc8MG6lbXKAIjVQX-AVb6AkZYsSkaGQ,7397
|
|
180
|
+
backtrader/indicators/moneyflow.py,sha256=SaAy4laxaZ23a4cSydpQJX8Zs98RkUTE20Id0EwCrEk,8902
|
|
181
|
+
backtrader/indicators/mt5atr.py,sha256=Gvz4UocF8WuUZ5twVey6tMa_i6bEUW0vntm3ILgkSWI,4333
|
|
182
|
+
backtrader/indicators/myind.py,sha256=KuEqWUKg6zQ_yh2sGv6u0mUCCXOuHJ70_oCvPI1TymY,5776
|
|
183
|
+
backtrader/indicators/obv.py,sha256=4UmQXl4ixDGMd1BAJtO6I7MaA26gGQoUYyQpQ4Fq2KY,2639
|
|
184
|
+
backtrader/indicators/ols.py,sha256=a6PZN9rj95M7M5N-OxWmWh0PLTwjWoLiMAFVO0Jk1OQ,8547
|
|
185
|
+
backtrader/indicators/oscillator.py,sha256=6VsznbTpyVAy4wzyA2bZmcnAjeBIPq2MFTpOpHDh8No,5068
|
|
186
|
+
backtrader/indicators/percentchange.py,sha256=ckwjBdKF5nXomBo9vsPhQ9iW9vOH3fR3uodapYQbMIM,2368
|
|
187
|
+
backtrader/indicators/percentrank.py,sha256=esBjeVS8F2b1w8-BO5FD6TKz5GKy93cCrTS_3Dx_MXM,1172
|
|
188
|
+
backtrader/indicators/pivotpoint.py,sha256=9WMgn6japGBsfiiTN9k8iY83K1tpkdp35wrK2IClKy8,15338
|
|
189
|
+
backtrader/indicators/prettygoodoscillator.py,sha256=Hm6TP72_kE3AJjQ2tAPKtmAY8iCTpWHZBhrFa9p3LeU,3550
|
|
190
|
+
backtrader/indicators/priceops_ext.py,sha256=5QUJUahR-w6thZhjDXaNEQ1Hjk6ZTQ-5_55HjYWHNiM,3891
|
|
191
|
+
backtrader/indicators/priceoscillator.py,sha256=nTLEUht90BKzb0z3IzV-uHWZemf06wc4mUBy8P_bCVU,7976
|
|
192
|
+
backtrader/indicators/psar.py,sha256=igESOUJNTU70v6lz5n8ruXl1xZ1ga_DXAxA1tWQ_2cM,7208
|
|
193
|
+
backtrader/indicators/rmi.py,sha256=xZkcMcD4h0yCvp8AbCndYQdfKUj4e1XgVQxH3hYWHew,2144
|
|
194
|
+
backtrader/indicators/rsi.py,sha256=28p0iCuf_T-mvhDQAagdMUAFsUX3JGIyoTdz65v5asE,12275
|
|
195
|
+
backtrader/indicators/sma.py,sha256=ELw84-pdAnBgxLwxUFGgdS2JvJc-IkTsegNqwnwFi3Q,4858
|
|
196
|
+
backtrader/indicators/smma.py,sha256=DlYGVR0SfxNGL1tzM8G0cFfqWDBMyFJ2pfbwWl27JSU,3673
|
|
197
|
+
backtrader/indicators/spread.py,sha256=qUFfZo-lRioglIfsu3v5ZR8NswWC9ewDX0cABY3sppE,1873
|
|
198
|
+
backtrader/indicators/stochastic.py,sha256=jfAldJUd7Wj5CvX3oEm-lokkw6kmCMdURe-AEtaDZtc,7673
|
|
199
|
+
backtrader/indicators/supertrend.py,sha256=2wy2cE8uCekf3KpvgV0kxQzqzQrDkQI_ourDwaTT6AQ,17185
|
|
200
|
+
backtrader/indicators/trend_ext.py,sha256=B_e54ODRlePWOMnvO2WzoBoHVFtTGRYrigpuD3DTI-c,3785
|
|
201
|
+
backtrader/indicators/trix.py,sha256=aFQoG2gfhkxMAdO5AePqfG15Oow49fKJ3BW6Q4nygFc,6340
|
|
202
|
+
backtrader/indicators/tsi.py,sha256=F1orvqz-iQIwe-M5ZeS4fkurWND11aIw0Kmh3gBtdeM,4869
|
|
203
|
+
backtrader/indicators/ultimateoscillator.py,sha256=vUXkvsdAlxCoFEsZgclWzMPp8AebSSIyFUgcbmGzd3w,5212
|
|
204
|
+
backtrader/indicators/vortex.py,sha256=OBWsxXIhICra--et5mblO2cXK96jIv34gjHj_EsjpWA,1726
|
|
205
|
+
backtrader/indicators/williams.py,sha256=dxFmcEdJT2ddLYQ7u3KWKgqG0c5Cv8WofoWMEmOb0Ps,6001
|
|
206
|
+
backtrader/indicators/wma.py,sha256=9UFlRkTfWr8ER4dHJyMigKutBzAdHPi5TbZRMjV8E9A,3306
|
|
207
|
+
backtrader/indicators/zlema.py,sha256=FPOtskcMGu19FYFl_yLaWLELUSWavAPH44CLZzBfask,4186
|
|
208
|
+
backtrader/indicators/zlind.py,sha256=g6SDz9wh33K6jJEPotRNYvIpEZO7YjR301AEKCxB3T4,3260
|
|
209
|
+
backtrader/indicators/contrib/__init__.py,sha256=Okr5QZ2w1tzVw8yPO_eYqyRFut8IWgGLT1UHjlga-mA,6485
|
|
210
|
+
backtrader/indicators/contrib/absolutely_no_lag_lwma.py,sha256=PipL-2pISGDLfblfBnQOeEIrMZi7ej4kK7o1dYpyNQg,771
|
|
211
|
+
backtrader/indicators/contrib/absolutely_no_lag_lwma_color.py,sha256=gSCsekrGfSwMBoVXN6pwvPztLUBWS4nfBzarMIGgTaE,1550
|
|
212
|
+
backtrader/indicators/contrib/accumulation_distribution_line.py,sha256=4RuVwFofiSdinUnEGVReRC24UWRcuXyOcWAMyWaWXhQ,2902
|
|
213
|
+
backtrader/indicators/contrib/adx_cross_hull_style_indicator.py,sha256=0UAhv228ayMCEF-SihIVoUMcDMzkkhO4BO-Rb5LA0u4,9629
|
|
214
|
+
backtrader/indicators/contrib/adxdmi.py,sha256=0wCSnpMx5BD_0YNHoLZKEUz4XdU8TxL0pgv37u1ftjk,1021
|
|
215
|
+
backtrader/indicators/contrib/ai_acceleration_deceleration_oscillator.py,sha256=dbudjDSw3dKOMMl93aBXhdZlKhY3KQ-ueXQ2UZ8wZJI,941
|
|
216
|
+
backtrader/indicators/contrib/altr_trend_signal_v22.py,sha256=Cjse67m9aipxp0BhMNTsmkWXarZZrO7E64cDoB5u-fs,2495
|
|
217
|
+
backtrader/indicators/contrib/anchored_momentum_line.py,sha256=KAw_Id0hOL38Me7hZ0LP782K1mxoS30R0v5mgjsSiJo,3671
|
|
218
|
+
backtrader/indicators/contrib/any_range_cld_tail_indicator.py,sha256=Ev7BaMbSi4gb8AOOQQc0fAofMsebNGNzClTeiaU1T_c,3087
|
|
219
|
+
backtrader/indicators/contrib/aroon_horn_sign_indicator.py,sha256=YNssTQX0jf9izygZyB-YwDzJ1ZRWkD62LJUqhl_0WyE,3029
|
|
220
|
+
backtrader/indicators/contrib/aroon_oscillator_sign_alert.py,sha256=1VPLD7wVLv43vJeK5pGgvkFQ77QXA_4A4-83yc4b3Pw,1767
|
|
221
|
+
backtrader/indicators/contrib/arrows_curves_indicator.py,sha256=aMBX1cCZ1D7phBy_vVmbxN_1NnPt9L4ZHsX8TQdtCwA,3748
|
|
222
|
+
backtrader/indicators/contrib/as_ctrend_indicator.py,sha256=-qednjv7-RpUjpW7dWUd2R1hI3gXxfXAJvhjIhWa8vE,4708
|
|
223
|
+
backtrader/indicators/contrib/asimmetric_stoch_nr_indicator.py,sha256=WItipY-UrsNeK_lxS-eR_MGY3GmVD_a4BXkscVN4leg,7384
|
|
224
|
+
backtrader/indicators/contrib/atr_normalize_histogram.py,sha256=ih4qeEE2DarHmIkcmWHnLxt9VSUiroGUpZexQdST6HQ,4013
|
|
225
|
+
backtrader/indicators/contrib/average_change_candle.py,sha256=M6Mt9iIBUa_4rslaSkGVbMWtshgwfBoXWe7us8vgs5A,5346
|
|
226
|
+
backtrader/indicators/contrib/bb_squeeze_indicator.py,sha256=eMu2lMINuEctCHPOzdQxCAtF_BJgXyO27ejvb1_KGWI,1856
|
|
227
|
+
backtrader/indicators/contrib/bezier_st_dev_indicator.py,sha256=ic2LMXbRZaeLYzCHT5RTGFtHoa9MbU1Grro5f7xiFx0,3900
|
|
228
|
+
backtrader/indicators/contrib/binary_wave_indicator.py,sha256=Vhez2LevUf7A8wACjsJuMjMHpZKYS4BedZrtMPqFQEI,8122
|
|
229
|
+
backtrader/indicators/contrib/blau_c_momentum_indicator.py,sha256=mdFpNG4P5jSzTxXrd1h_gNSrPWYsTzZnztQc3b_5bW4,3786
|
|
230
|
+
backtrader/indicators/contrib/blau_cmi_indicator.py,sha256=Y8_LREUNOwptwMop4L1lmZ29KyotiKteWV56wPuhE5c,4498
|
|
231
|
+
backtrader/indicators/contrib/blau_csi.py,sha256=KUFC3b60swUUXdKgQGwrWx5g5LQnT6te2Bo01JMkK7A,2456
|
|
232
|
+
backtrader/indicators/contrib/blau_ergodic.py,sha256=qOkqU4K3NCM9aV0N92ajSE9khBJHXh6eFthn7hMhGs4,1681
|
|
233
|
+
backtrader/indicators/contrib/blau_t_stoch_i.py,sha256=NhFH1KWXVK709xiXC52lVudANIyiwn526z3zfUzZpdk,2306
|
|
234
|
+
backtrader/indicators/contrib/blau_ts_stochastic.py,sha256=LaSpCue4BNaUauLvsuIkjqVE2xmSPIE959Mydc6RnDk,2805
|
|
235
|
+
backtrader/indicators/contrib/blau_tvi.py,sha256=UZlybqMmZoeXz5n4-vSYB9sNpHlJDJhsF5C7qdIMXvs,1902
|
|
236
|
+
backtrader/indicators/contrib/brain_trend2_indicator.py,sha256=vPL4HRwXKUFSfGJVDDB1SBbUg_SDK-f0FjM_7FjTmJc,4556
|
|
237
|
+
backtrader/indicators/contrib/brain_trend_signal_proxy.py,sha256=SGXaxC_TvCey6IVZ5H1-PQf7u-W8Qm5aQ3zFNq-hF4s,1513
|
|
238
|
+
backtrader/indicators/contrib/brake_parb_indicator.py,sha256=HadqEAY5KutSLxHMpqhUnGtz1oqGErvRhEeosquHu3A,3299
|
|
239
|
+
backtrader/indicators/contrib/breakout_bars_trend_v2.py,sha256=u9hEGD6WoFu01wk71To4lP1bJiZXsjDMPeQ6iw-YVkk,4238
|
|
240
|
+
backtrader/indicators/contrib/bsi_indicator.py,sha256=-cUgNqyQcBdu2wk1ymVDwPp10Bj0hC-kLJqQp7XZrvQ,3209
|
|
241
|
+
backtrader/indicators/contrib/bulls_bears_eyes.py,sha256=JWZ4ZM1n8QUF8v2fNWUz7OlKHMctlgKqLYVdvBFsnI0,1863
|
|
242
|
+
backtrader/indicators/contrib/bulls_power.py,sha256=LroaC8KtgCy9GBTMwStn7ttaOKOKQJqrMuILgqq9Qzw,1459
|
|
243
|
+
backtrader/indicators/contrib/bw_wise_man1_signal.py,sha256=jXPB2oGxixppN0hPqa1pCmS878J6CAV5yFWlvuFm_aU,3435
|
|
244
|
+
backtrader/indicators/contrib/bykov_trend_indicator.py,sha256=DUhFAURD1OZEIiYZN-RzWUFl01bBNYS9_lvz1JB-ysk,2529
|
|
245
|
+
backtrader/indicators/contrib/candle_stop_color.py,sha256=XvMdJmI2iVy7hC7FZ-Fjgo-hXZunsH7yDnMjhw1ec2o,1630
|
|
246
|
+
backtrader/indicators/contrib/candles_x_smoothed_indicator.py,sha256=xGSYtzpf8miPxp8f1VtAMPl2S7CMFXwwjx1895UaPPw,1978
|
|
247
|
+
backtrader/indicators/contrib/candlesticks_bw.py,sha256=l6EfvJ_LMNX7NO3bb-Rrp-kGAU8oxoincjW-fl67sGc,1267
|
|
248
|
+
backtrader/indicators/contrib/caudate_x_period_candle_color.py,sha256=YOfOaRv7Or5WcWDxoYBkK0vihlgNwW_WURusZHg0lvM,2076
|
|
249
|
+
backtrader/indicators/contrib/cci_histogram_indicator.py,sha256=Xy7WFtz-4ljt4aBMi4wkLOs08oViE2eOOSY5BjBvb-Q,1548
|
|
250
|
+
backtrader/indicators/contrib/cci_woodies_indicator.py,sha256=IsrAbZTm22J9pne8ADFsb5t7rRoZW6At-A7l535ErCc,2505
|
|
251
|
+
backtrader/indicators/contrib/center_of_gravity_candle_indicator.py,sha256=ewiKntxG8ChxeC93zns6x9r-mYUkJOJ41pSqlbiU5e4,2939
|
|
252
|
+
backtrader/indicators/contrib/center_of_gravity_indicator.py,sha256=tdcA6qQVS-pZKjORgEV6uCfa8p-5mruSFgD2p4otnZ4,2283
|
|
253
|
+
backtrader/indicators/contrib/cg_oscillator.py,sha256=hPLd85U5fVt7VT5auBAHXvFxHP0dpmfGXyK6sMJeaYc,1345
|
|
254
|
+
backtrader/indicators/contrib/close_line_cci.py,sha256=SEQt3nxWcuxCvW7F4yG4_QZafvagVMb_fUx5blAq9rw,949
|
|
255
|
+
backtrader/indicators/contrib/close_price_fractals.py,sha256=c0N2ekE5MEsMDjOET7tJq46mRo3tCSVjcRhpUCYu-lU,1556
|
|
256
|
+
backtrader/indicators/contrib/color3rd_gen_xma_indicator.py,sha256=_GUaHskOAMNyl282IDTkPOKoxDTsXRLikIivkCewLJY,4117
|
|
257
|
+
backtrader/indicators/contrib/color_bb_candles_indicator.py,sha256=39s-4yFP8SVErC8CeMv1iYUfzfT88kAjxeoGU4lmw2I,3452
|
|
258
|
+
backtrader/indicators/contrib/color_coppock_indicator.py,sha256=m45Q5JEAoVWj9if2Em5zR_UNoVir3Ttwbk2gOdb6nz4,4748
|
|
259
|
+
backtrader/indicators/contrib/color_hma.py,sha256=pOqUioiOurtSD47UgXkcQ0eK3HNjOwJe4BiiOV8VlxY,2344
|
|
260
|
+
backtrader/indicators/contrib/color_j_variation_indicator.py,sha256=JkQRGHqKY2awSWYiR9y-whUPjudZddoWAV3eSQIuzUg,1551
|
|
261
|
+
backtrader/indicators/contrib/color_metro_de_marker_indicator.py,sha256=ZQr6NjYLmBmvvC2DA60Mkpjs1iqAlGNKRl9_GxRZz-k,2634
|
|
262
|
+
backtrader/indicators/contrib/color_metro_stochastic_indicator.py,sha256=TYSINJfpCe-LZ9wHLADSSHgGAyie2UvQ1Vw-Tjie0Cc,3047
|
|
263
|
+
backtrader/indicators/contrib/color_metro_wpr_indicator.py,sha256=Pdmjad73JWw_jDtlXV4MVxl7Vt9GVoxCI3Sc-47LG4M,2806
|
|
264
|
+
backtrader/indicators/contrib/color_schaff_de_marker_trend_cycle.py,sha256=IEx0xPTa_9kwf_OsubZDgnIlECJ6AToXNfjERZ_bAm8,3284
|
|
265
|
+
backtrader/indicators/contrib/color_schaff_trend_cycle_indicator.py,sha256=ALsSoQGA_Wn-gvduRV6Y-lq45pYn_KRC0wvQaCFPWvI,7012
|
|
266
|
+
backtrader/indicators/contrib/color_step_xccx_indicator.py,sha256=nspXMNXWnIa9rCcmBxryJ0IObDthjrDtc8S3UQxPdqg,6414
|
|
267
|
+
backtrader/indicators/contrib/color_x2_ma.py,sha256=WO6DWLtcwrwOUUynqYuxY64CWNfjX-cGmHbdFar1P4Y,1322
|
|
268
|
+
backtrader/indicators/contrib/color_x_derivative.py,sha256=yowwSN9RrncEoX9eJl8JRrup-A31e9qBegnUGjuFNKY,2135
|
|
269
|
+
backtrader/indicators/contrib/color_zerolag_de_marker.py,sha256=afNKLFw4JGyhIZ8tMvqFY1tTyHDC6YH2CuXQ4p1U_Wc,2974
|
|
270
|
+
backtrader/indicators/contrib/corrected_average_indicator.py,sha256=1DD2iLSAnSsoVogFDuuSQNVLI3EuTX7WL0PJZv4BO2A,4130
|
|
271
|
+
backtrader/indicators/contrib/darvas_boxes_system.py,sha256=91HI9xSPdyfndd0eXLsuob0GdGIKRv7KIW_6VbE6oRk,2397
|
|
272
|
+
backtrader/indicators/contrib/dema_range_channel_color.py,sha256=0TAZiiTa0pTx6A1SzTFghxFRl-bCgy7nH8dqqZaLr8A,1423
|
|
273
|
+
backtrader/indicators/contrib/derivative_indicator.py,sha256=boxLGqHQB5xIrr-Q26VhW40xojWMRh7FM8OSIEdj-ls,2673
|
|
274
|
+
backtrader/indicators/contrib/digital_ft01_indicator.py,sha256=vniOfaGMil5iBoASudgl7okiKgDoaBo5MdMDy741Bm0,3588
|
|
275
|
+
backtrader/indicators/contrib/digital_macd.py,sha256=sLHmt1NVCAtPzuJyLtjtQ7At2V9kJf-LWeig9aFdgH4,5161
|
|
276
|
+
backtrader/indicators/contrib/donchian_channels_system.py,sha256=B3c6EOi7S8e-UQSsfjOs9Vh0vGm5x10oz9vE9V14hBk,1472
|
|
277
|
+
backtrader/indicators/contrib/dots_indicator.py,sha256=1fP-N3kcI8sNIEt2h2OtOXiLJ8zCnRWAwIN42PgEnFQ,3000
|
|
278
|
+
backtrader/indicators/contrib/ef_distance_indicator.py,sha256=qPQx5UU88epUmVRfs6ru6X496lXESBYv0uaDM2T7wXE,2926
|
|
279
|
+
backtrader/indicators/contrib/ema_rsi_va.py,sha256=OwBTv9xSzZmAGsy4K1MjM7_cVKYgmT4GmY6VKxoFciM,2668
|
|
280
|
+
backtrader/indicators/contrib/envelopes_jp_alonso.py,sha256=Z5snxIyZN1OoIO5x3uBg_ENSGB54htlXR2B3fVaNAMg,914
|
|
281
|
+
backtrader/indicators/contrib/f2a_ao_indicator.py,sha256=sT89Gee3hf2r09vVW0bXQBurunbEoJBiLxLt556uh5M,4814
|
|
282
|
+
backtrader/indicators/contrib/fatl_filter.py,sha256=y6CIzvmejKpXJpvG6UQZaUlCaQSpZakWYHaxze9_PaQ,6036
|
|
283
|
+
backtrader/indicators/contrib/fibo_candles_indicator.py,sha256=saGqnP9ewRztLpHkvvcNmyApkw8vdUSaOQoWXQAWJUE,2346
|
|
284
|
+
backtrader/indicators/contrib/fine_tuning_ma.py,sha256=ZaKJKquzRuHclUMP6pKXUVLxVLc1UjTHLMmZaQrJR9Y,3404
|
|
285
|
+
backtrader/indicators/contrib/fisher_org_v1.py,sha256=03bqQCAUfXl2rpih1boJeVoQ3U4qEqixwUhkJibMcwo,2866
|
|
286
|
+
backtrader/indicators/contrib/fisher_org_v1_sign.py,sha256=wQl-B7wlgZZyASkwQ1Shh2IUHwHcn1ix8rcAewqPOfc,3621
|
|
287
|
+
backtrader/indicators/contrib/force_index_ema.py,sha256=h8LrYI4uoE-JDUp1swMVjEdmObatxtmwJhvcioO8flU,3269
|
|
288
|
+
backtrader/indicators/contrib/force_index_ema_2.py,sha256=Y5FFgNp9eBTnBxv2M2CjbhWqLnPff2yDhKmT2cshJpY,746
|
|
289
|
+
backtrader/indicators/contrib/forecast_oscilator.py,sha256=40djNWgI7Zt-HUvBXZSR2ANg2fdG19MerS_WrCb3FU4,5187
|
|
290
|
+
backtrader/indicators/contrib/fractal_amambk.py,sha256=S5ckC-t6mMm-81jkzYz2fXGywoTF8rnIwWbJDFuRlQk,2641
|
|
291
|
+
backtrader/indicators/contrib/frama_series.py,sha256=JytJiDs4P6Kfk1D-CVx5MR9bQUS3CAFHHenSOORJ2a0,2904
|
|
292
|
+
backtrader/indicators/contrib/frasm_av2_indicator.py,sha256=IyXBEqmqurH8E9nGMtK_EnfVHiIcYnkURsAmrwmvmko,3346
|
|
293
|
+
backtrader/indicators/contrib/go_indicator.py,sha256=oAsrIWzzCyc9aibXA1Z_aieS3i842RoHJ4KQyU48Xl0,2792
|
|
294
|
+
backtrader/indicators/contrib/hlr_indicator.py,sha256=ztN0BretYx45LCin06fHOxVkAO3QFgF2CXGh6L7NHNk,3289
|
|
295
|
+
backtrader/indicators/contrib/hma.py,sha256=zg6FFm-kZQACgCNXcEweLQo7MRUIt_HCSGTDp6vRuB4,1552
|
|
296
|
+
backtrader/indicators/contrib/i4_drfv2.py,sha256=lxeD1FZQq61aRGmuXCvXc-CJoHFRUN6XVW1H-Jj5HF4,1013
|
|
297
|
+
backtrader/indicators/contrib/i4_drfv3.py,sha256=mtOxKzXCugSP-hrpu7SPa2jHogjUquzXmwCtPEU-GBw,1200
|
|
298
|
+
backtrader/indicators/contrib/i_anch_mom_indicator.py,sha256=7mlEZoKQGpCkUBM-_cDS_i3SZoAbrwvYe48SQGCc2J4,2490
|
|
299
|
+
backtrader/indicators/contrib/i_de_marker_sign_indicator.py,sha256=jOfDBGtEjTGhmKCcdngT5vkycES7KgQWVwLmPDuiaT8,2245
|
|
300
|
+
backtrader/indicators/contrib/i_gap_indicator.py,sha256=6zTS4IAWCSAKpI014cys0Uq1UHjIG8MVCy9qKKTpDRs,1545
|
|
301
|
+
backtrader/indicators/contrib/i_stoch_komposter_indicator.py,sha256=mjHrJCRCMd5I3lXQcKOaNaXKz2-XfqwfWcvrukcou4Q,2577
|
|
302
|
+
backtrader/indicators/contrib/i_trend_indicator.py,sha256=RtxOk1DSGoPiAKhbiy3QyZW4aSfrFGE6GfbjVNqxlGE,4315
|
|
303
|
+
backtrader/indicators/contrib/iamma_indicator.py,sha256=tt10oPNWKkr9NcRofYspPfPLizglWvqum-oOUfEuJjk,1138
|
|
304
|
+
backtrader/indicators/contrib/indexed_moving_average.py,sha256=oUvNLRKVeOYtNo5XDjQ3OokqYfTqv5eLWzI3CWhlMmw,974
|
|
305
|
+
backtrader/indicators/contrib/instantaneous_trend_filter_indicator.py,sha256=RJ8IO958QziTGhI5uYqywUEdR0A-F6WHNI7fAMEsi10,1568
|
|
306
|
+
backtrader/indicators/contrib/inverse_reaction_indicator.py,sha256=ejFy4slBmVn-ntMR0FnbJpgaUNgFeYJnpV4cfjN2TRU,1394
|
|
307
|
+
backtrader/indicators/contrib/irsi_sign_indicator.py,sha256=HVngSdK6KY4CdnjhMhLq2GXQYj3czrdAM1l10DeVdC0,3019
|
|
308
|
+
backtrader/indicators/contrib/iwpr_sign_indicator.py,sha256=T72vhSZPkw7hEaNMITJgqhP0vgfEWt9BnizKSKsZEGA,1931
|
|
309
|
+
backtrader/indicators/contrib/j_brain_trend1_sig_indicator.py,sha256=icYWoLOrOowBe1D41Z9WflwI2nCdYh3vV2lUyhtIbZQ,7755
|
|
310
|
+
backtrader/indicators/contrib/j_tpo_proxy.py,sha256=77LcK-TEOsm0KvqKl5mM-GdZOVgKi159wYm6xHKTr94,905
|
|
311
|
+
backtrader/indicators/contrib/jma_slope_indicator.py,sha256=pK26__hxOPaHTPmZllqtGoLawKxW_tyZe6mDhwvVQLQ,2499
|
|
312
|
+
backtrader/indicators/contrib/kalman_filter_indicator.py,sha256=pNApcdz5PIiFL5_-sMNFO80C-EsoLl0kuyMnrWwo2rk,3537
|
|
313
|
+
backtrader/indicators/contrib/kalman_filter_line.py,sha256=y0dLOgt2ws7XgB_VoQNwVlgQKM5Ii_JKZiBR949b4dQ,4201
|
|
314
|
+
backtrader/indicators/contrib/kama_indicator.py,sha256=YoYe_FzgHcDmd8Q2atUHeJK1MPBg4QtEE_ZFktAxUmE,5269
|
|
315
|
+
backtrader/indicators/contrib/karacatica_indicator.py,sha256=dFkDDsm282eaIKkZv6d4lQq2EM8zie9-fIFApdr_Rdo,3555
|
|
316
|
+
backtrader/indicators/contrib/kdj_indicator.py,sha256=9dZL6xm4E8ARkq2KLXVrm_MOxDVE3BKBkGdLwwXukxw,1956
|
|
317
|
+
backtrader/indicators/contrib/kwan_ccc_indicator.py,sha256=syMyYhO3Uesyb5bn1of629Yl0Ula_cRa4oBySMfHDVw,6600
|
|
318
|
+
backtrader/indicators/contrib/kwan_nrp_indicator.py,sha256=XK45UxQqP-DNqYdy6umwsv8BTfGerPya_1r58yWcaLc,3107
|
|
319
|
+
backtrader/indicators/contrib/kwan_rdp_indicator.py,sha256=qsY9TkgDQbmd8zag4JEWdA-ZCXenyudVnUnMMuAWVa4,6646
|
|
320
|
+
backtrader/indicators/contrib/laguerre_adx_indicator.py,sha256=T8v3LvGokwYoa7GSkSNzgRrgDiN1dFm0d8_0e5-lXl4,2694
|
|
321
|
+
backtrader/indicators/contrib/laguerre_filter_indicator.py,sha256=rkpcciFhuCMaJpvkOCfxN94xN0nH_u2OnDOVK8eRWy4,2002
|
|
322
|
+
backtrader/indicators/contrib/laguerre_plus_di_proxy.py,sha256=aDtJPNDY2BimNBfOzaesOtQP_sZaXxKDoCGeqniXDm8,1990
|
|
323
|
+
backtrader/indicators/contrib/laguerre_roc_indicator.py,sha256=nfcPG6DapF3eBp1qqfA25DXXucRkcAxUqNr1T2Jw5F0,2561
|
|
324
|
+
backtrader/indicators/contrib/le_man_signal_indicator.py,sha256=Nd_VEA6dJIHVu9a3aA8y3jqfMFxjNWAGf1m5xUhk7A0,2377
|
|
325
|
+
backtrader/indicators/contrib/linear_reg_slope_v2_indicator.py,sha256=JB6UlmNdi-WWZhyCuqI4OfoN6h_k_OES0FOZ3ddgzH4,4854
|
|
326
|
+
backtrader/indicators/contrib/loco_indicator.py,sha256=MvEi9BFMx_LR3eN5nHy3eqx_6ADUhcaQcZ6tRVd9uD8,2999
|
|
327
|
+
backtrader/indicators/contrib/lrma_indicator.py,sha256=fDBC-qzLOZiWdZPavObxQTV_-pK3QR_YqlG1XAICE6g,6300
|
|
328
|
+
backtrader/indicators/contrib/lsma_angle_indicator.py,sha256=D5bHJS1zs1WMixia8unFj6wxQ9hjgr62fXuKmrhPOFo,3757
|
|
329
|
+
backtrader/indicators/contrib/ma_rounding_channel_indicator.py,sha256=EnpQODOVERQCEyppf8YQJn5eFuL8DdAXr8pEHQqmVGk,5093
|
|
330
|
+
backtrader/indicators/contrib/macd2_indicator.py,sha256=CP7fIRdWIFR-Oijni9-Bes_La1rB8H1a5kWgmH8gdTM,1779
|
|
331
|
+
backtrader/indicators/contrib/macd_candle_indicator.py,sha256=UxzZW4VU8iz8KbfCTSJmfUKzqz9qOuRnQgL72qwOk68,2597
|
|
332
|
+
backtrader/indicators/contrib/malr_indicator.py,sha256=7UNGwXYGZWiCbh1B8CpO_hypDPgWDzb70p02NSVUXOI,2594
|
|
333
|
+
backtrader/indicators/contrib/momentum_candle_sign_indicator.py,sha256=f0OCqIPXsXSNRSN0-U7NjaKe12IV7ThvnISdOZ2yWsY,1903
|
|
334
|
+
backtrader/indicators/contrib/moving_average_fn_indicator.py,sha256=TMVtVfXoSORS-BKZj1fEMzpdeFCl5HfFHf9r_M8zXOw,4830
|
|
335
|
+
backtrader/indicators/contrib/mt5_stochastic_close_close.py,sha256=f0c6mJpvf1DSeII6SGLIzPOtfn0NyzXtmus5gd4BlXY,1855
|
|
336
|
+
backtrader/indicators/contrib/muv_nor_diff_cloud_indicator.py,sha256=JI_6ZDpJWf_wtK8S16J-LSzLlUvC9xk8WiG2x7AEzaw,4119
|
|
337
|
+
backtrader/indicators/contrib/non_lag_dot_indicator.py,sha256=xPRv9vy--2MIMeFCea98LGoD_SwKqVAzhIZqJMBNVdQ,3563
|
|
338
|
+
backtrader/indicators/contrib/nrtr_extr_indicator.py,sha256=o0kxLUhc3fLmy5IAM1TzWnaZ90RmmMUw5DHSz1qGPtU,3116
|
|
339
|
+
backtrader/indicators/contrib/nrtr_indicator.py,sha256=2HQgXEjznf0VyRRhN_xeKegiRArSnYKMouHP4WselP4,3061
|
|
340
|
+
backtrader/indicators/contrib/p_channel_system.py,sha256=ZeogXk-AOKEJNIA803x9YdJIufajUaCV9ZCvZZQ6eaI,1273
|
|
341
|
+
backtrader/indicators/contrib/percent_envelope.py,sha256=wUgBzNo0l1i2gjUzEXjPn9FQ8TdD10KQRxda3MsOt2Y,993
|
|
342
|
+
backtrader/indicators/contrib/percentage_crossover_channel.py,sha256=_TS-Js3PZ2gP1xkSsSHjaYo_uNsf3aomnT92YICoNHU,1629
|
|
343
|
+
backtrader/indicators/contrib/pivot_zig_zag_proxy.py,sha256=pkDQY3nzd0gjdA9f_kFxOJE-ADxTEidbcPWeaCmjYys,1832
|
|
344
|
+
backtrader/indicators/contrib/price_channel_stop_indicator.py,sha256=MipF4ay56c2XdurcAhQMk9uNAeFZndqEjBzihaTD17c,3182
|
|
345
|
+
backtrader/indicators/contrib/price_extreme_channel.py,sha256=YTTnhEsluSygwkuMHWVQft8_vu0k51Nm9lbKzbjIli4,963
|
|
346
|
+
backtrader/indicators/contrib/qqe_cloud_indicator.py,sha256=sv3uXfO4RLt_9ykhb8M_YzNR9EQ0Bx8SHv6eFcJhldo,4139
|
|
347
|
+
backtrader/indicators/contrib/ravi_indicator.py,sha256=0unyy5YJCBBshWk0SnX5JqW7kfdG2QSv2t8SJEagCTc,1185
|
|
348
|
+
backtrader/indicators/contrib/raw_close_close_stochastic.py,sha256=d_fo7g6Yge_JG9AjYPLaJ8v7pDearcd-1is_7gIPaJM,2443
|
|
349
|
+
backtrader/indicators/contrib/rd_trend_trigger_indicator.py,sha256=9J0536SQdSzCtoKVyYDSL0WYsBRlBmKu0DvGelUfn0g,1939
|
|
350
|
+
backtrader/indicators/contrib/renko_level.py,sha256=_qTu9JEbZzy4yOOr6ZCKG97v31S0iOq_lLr58X6lx98,2839
|
|
351
|
+
backtrader/indicators/contrib/renko_line_break.py,sha256=u9tl3WD5zZ-kDolStnKHtRPQOuLMU69DGowlGqYozVM,2790
|
|
352
|
+
backtrader/indicators/contrib/rftl_indicator.py,sha256=lRUZp6xUruZ5OzQK38VIIeqppZA9sfAGu89HraggGNc,985
|
|
353
|
+
backtrader/indicators/contrib/rkd_indicator.py,sha256=pVMFXOyBMCvqjskISMWA7h9fBUgJ_TCPDKTL2Qb0Qg0,1567
|
|
354
|
+
backtrader/indicators/contrib/roc2_vg_indicator.py,sha256=-nHX_8AR-0GrW9wHjCFz1i0HQgETEXwueyhXxtDH89k,1974
|
|
355
|
+
backtrader/indicators/contrib/rsi_histogram_indicator.py,sha256=0KKUp6E-01u23ZFt5M5iBaShS67x8526pg0c3VADR0I,1188
|
|
356
|
+
backtrader/indicators/contrib/rsi_slowdown.py,sha256=0xZcE3xfBbyYGXzuiBvJLQ31qhDqT0tzbWyqXRsAvm0,1860
|
|
357
|
+
backtrader/indicators/contrib/rsioma_v2.py,sha256=Oqy61ewYDcoJBcaO9C0iaoEkJ0jaecWmteiDMGAVEKg,1275
|
|
358
|
+
backtrader/indicators/contrib/rvi_histogram_indicator.py,sha256=BDe8wZ30y0eEsM3rH8DPi6hc3cUClgX9EDV-2uye5NA,3390
|
|
359
|
+
backtrader/indicators/contrib/safe_adx.py,sha256=fPlYK78Ji2AXLyCsHZRBqLmQXKBwL1iRG9i3ViQW68o,3065
|
|
360
|
+
backtrader/indicators/contrib/shared_strategy_indicators.py,sha256=LiLwaYJchvtj3Cug22Mv8fbNdihmery_hWFAG96NqyY,58967
|
|
361
|
+
backtrader/indicators/contrib/sidus_indicator.py,sha256=XZ3wd_n6vXI9OncQQswpy_RI7WZPOKNODE0RUT_8dgw,3667
|
|
362
|
+
backtrader/indicators/contrib/silver_trend_indicator.py,sha256=_ovv-QeC7l3Ddx6Ill2niBLerrDkL6VJuQ45JWwtsKY,2424
|
|
363
|
+
backtrader/indicators/contrib/sliding_range_color.py,sha256=lMIU4jKFmabyMXZihMOdWRDTSNpWFVeYz5mCijmsuQ8,1994
|
|
364
|
+
backtrader/indicators/contrib/slow_stoch.py,sha256=QgcKKCdEahpXvXVyUzkjAcnEjpIvfJuXPh8xQY9Z1rg,1170
|
|
365
|
+
backtrader/indicators/contrib/smoothed_adx_indicator.py,sha256=if5cZtMJzScpPet1nWdIGfxr4O-f9RG2UVGq4gmgrPg,2742
|
|
366
|
+
backtrader/indicators/contrib/smoothed_rsi.py,sha256=VMCMHttl-dc0k1NKzvvXLFEbrpurWpVQuUw3XJqcnsY,749
|
|
367
|
+
backtrader/indicators/contrib/spearman_rank_correlation_histogram.py,sha256=kF3KQTDKSDxUXL-TAStI-pW7gww7omMp-IHiMSOKBjo,1923
|
|
368
|
+
backtrader/indicators/contrib/stalin_indicator.py,sha256=CiLttiM-9l2H7RK8xLxagScFQufqlUb7T4Ul5-Ynv3A,5347
|
|
369
|
+
backtrader/indicators/contrib/starter_laguerre_filter.py,sha256=elandxWqUpkhZ7swe7FWO6GZj4-PcmBgTwbCzT-A0o4,2014
|
|
370
|
+
backtrader/indicators/contrib/step_manrtr_indicator.py,sha256=7ZwWO5WLL5eEZkN2wQ-ZaDg8F5UR-qmc6qCiH-gYk14,4217
|
|
371
|
+
backtrader/indicators/contrib/stochastic_histogram_indicator.py,sha256=BgNDAN1T2MeHso2hM8aRv1ONBHsyJDSNOM4EonmbLrI,5862
|
|
372
|
+
backtrader/indicators/contrib/t3_alarm_indicator.py,sha256=zFRoJXyan7B6PsAsSGRDt6YsoxsOSKkqFxJE5spjL-k,4405
|
|
373
|
+
backtrader/indicators/contrib/t3_average.py,sha256=pVZg3i-FUBByvWVNqmTLNDM6_0ZZVsdCLZgadjncx6Y,2465
|
|
374
|
+
backtrader/indicators/contrib/t3_indicator.py,sha256=0JFn5E7Y8hCMhbq3ywcSJx6FbpnoyoBElfb7GX6ivvo,1117
|
|
375
|
+
backtrader/indicators/contrib/the20s_v020_signal.py,sha256=y6k2MTnMA9ngVe3m22Io7sOEJMo673wTDjflTlJECb8,3455
|
|
376
|
+
backtrader/indicators/contrib/three_candles_indicator.py,sha256=7rQWwML-gNMloYq6hQz-ty2TwBsWqQqYDu6IF_ATadY,2513
|
|
377
|
+
backtrader/indicators/contrib/three_line_break_indicator.py,sha256=QHIV1CgNbMuWHRL7eAneHW5DbrYvA8ZrW-Gj-ftRdVQ,2176
|
|
378
|
+
backtrader/indicators/contrib/time_line.py,sha256=DWh0pk5cBPgfKSyZMlkxPB0dAbe2OuUU4j4q6PyNhXE,1987
|
|
379
|
+
backtrader/indicators/contrib/trading_channel_index_proxy.py,sha256=4rusiAKlhhp1G5ec9HesYDtcf8Wrry4Hui_HglYqFLM,1486
|
|
380
|
+
backtrader/indicators/contrib/trend_arrows_indicator.py,sha256=GjP8t5OQKBHMfsoedcaaxGLenRN2ClWt6vx5nenKu_E,3564
|
|
381
|
+
backtrader/indicators/contrib/trend_continuation_indicator.py,sha256=cNsV8iiP05-9blIsA6P5OwGVfg3f9HFRxkLtHUTgbws,4106
|
|
382
|
+
backtrader/indicators/contrib/trend_intensity_index_proxy.py,sha256=_17Janfb4rskdV-y-NIM0eePfhncckox2P09XGrLv_o,1646
|
|
383
|
+
backtrader/indicators/contrib/trend_manager_indicator.py,sha256=ko35xAFVdqsJBE13XhD3kG1pf89-ZkHzLsRmTu2xrys,1174
|
|
384
|
+
backtrader/indicators/contrib/tri_x_candle_indicator.py,sha256=K1HL9EWcZdrHGB0rFAZIoB9ccm7yYia9M01cstw9GS0,1557
|
|
385
|
+
backtrader/indicators/contrib/trigger_line.py,sha256=-NP2kF3oOhyQr1-AjV8JNwg3XDqHmxROPK-J7RGvIKY,2202
|
|
386
|
+
backtrader/indicators/contrib/triple_ema_rate.py,sha256=SSX70tzGEXJ8thUddOVBj6159tiuWQC4DGkNyYC-klA,1007
|
|
387
|
+
backtrader/indicators/contrib/trvi_indicator.py,sha256=pA_gjiuqOdM-M9vX2pKdPo3xNqy8BZG5LuvstnPeXbc,5796
|
|
388
|
+
backtrader/indicators/contrib/two_pb_ideal_xosma_indicator.py,sha256=OGxK7dbFkUQIzUsp6gkp78KOztxWESJpRuREc3y6VRI,4572
|
|
389
|
+
backtrader/indicators/contrib/ultra_absolutely_no_lag_lwma_color.py,sha256=woSX-oroe_JYFfYdYGioM4M5u4rdJ6oQeFsn5Mudurw,3093
|
|
390
|
+
backtrader/indicators/contrib/ultra_wpr_indicator.py,sha256=AwQ0A_zUkm1I8TSbm3GvTorfsy9_139dm2i7PCGKZWU,6184
|
|
391
|
+
backtrader/indicators/contrib/up_down_candle_strength.py,sha256=MM80MaFacXgCiAUmck_wWUJ9_sCdEIO72esh1RK52Fw,2202
|
|
392
|
+
backtrader/indicators/contrib/vinin_i_trend_indicator.py,sha256=9rMIAdjx-yb6i-VwRc0hnC4ZKTVW6hMv3gbCQx3cFyo,4480
|
|
393
|
+
backtrader/indicators/contrib/volume_weighted_ma_indicator.py,sha256=DQ4Fcwf3ONHLob7c8r_YjfffxslUTsg_4Q0Z12SJyEw,2269
|
|
394
|
+
backtrader/indicators/contrib/volume_weighted_ma_st_dev_indicator.py,sha256=p7UI6nzO8HfyprzZHRRa3pUXPpdXyN_-GEfq4qr6mm4,3536
|
|
395
|
+
backtrader/indicators/contrib/vwap_close_indicator.py,sha256=ZgRbzg4TfpCBuVm3mYJdAypjS99ciH38aGXS89rYy2s,1817
|
|
396
|
+
backtrader/indicators/contrib/vwma_candle.py,sha256=yX6QvkVl6Q5hwAUcNSza2l-f0IY-ZEjfqfvxL8Ko6dg,1685
|
|
397
|
+
backtrader/indicators/contrib/vwma_digit_system.py,sha256=3Tl6gnRVgolHtO7aZk8bgCqkga3MPvLahm9cJA7fLog,2295
|
|
398
|
+
backtrader/indicators/contrib/wami.py,sha256=ixFKPe3pfkZ5Pi9dW91b9bPrZil4aubLgrtEXEc2I54,1332
|
|
399
|
+
backtrader/indicators/contrib/wprsi_signal_indicator.py,sha256=BD8eB1clMjXQ5YfRVSmUF97cNRYEsz6mslQVThyALpo,3484
|
|
400
|
+
backtrader/indicators/contrib/x_de_marker_histogram_vol_direct_indicator.py,sha256=3LTx0O2JZHNQoCj4hg--oQ3_sNxqi5X-7yvUIdvu7jc,5248
|
|
401
|
+
backtrader/indicators/contrib/x_fisher_indicator.py,sha256=7y9tJqMV0eifJHZwkMF_mCNC4-hYHqwMF3jltXjSEks,1982
|
|
402
|
+
backtrader/indicators/contrib/xcci_histogram_vol_direct_indicator.py,sha256=dYU272S065hQ66Wqjjneyw__PjsmCS137IbtmPZMHCo,1979
|
|
403
|
+
backtrader/indicators/contrib/xcci_histogram_vol_indicator.py,sha256=fVupz51bRakCfuEkmMauAvz2IzBLAEmj10nRaGAJYAw,2966
|
|
404
|
+
backtrader/indicators/contrib/xma_ichimoku.py,sha256=pUIUVr2p7p8UIuTUzkdyP-WSryAwrkrkYLzqcV0Cth0,5081
|
|
405
|
+
backtrader/indicators/contrib/xma_ishimoku_channel_indicator.py,sha256=yhNtAIGDL-hYSZPB0AaKE4dbYfxWqp7nPFGZsnr8TTk,1887
|
|
406
|
+
backtrader/indicators/contrib/xma_ishimoku_line.py,sha256=2XZs22p3fXdayy6PhuXHMgOHGEUPsh1geLLie02Q-ao,1975
|
|
407
|
+
backtrader/indicators/contrib/xma_range_bands_indicator.py,sha256=5fvaluXJg04NQ8YLmmhJJi9ULhOiiUJT5jaLu-sjZSM,3652
|
|
408
|
+
backtrader/indicators/contrib/xmacd_indicator.py,sha256=Tx9b9jYk0FSAc4T90JmbNsGJ6RcpfSN9_E6WZ0A1Pjc,2405
|
|
409
|
+
backtrader/indicators/contrib/xrsi_de_marker_histogram.py,sha256=8PIP2FwTUY968TVW7cfdCtqDbcUIZvY4690Gd45Nepo,2140
|
|
410
|
+
backtrader/indicators/contrib/xrsi_histogram_vol_direct_indicator.py,sha256=8_LK124VfoMz-T3WLM9Fa4Tx6U98aBSM2gcAwzqyjo8,1864
|
|
411
|
+
backtrader/indicators/contrib/xrsi_histogram_vol_indicator.py,sha256=D_OnHkBD_2-N838CcJRzHUP-Rrry04fAOE2NoYteCbU,2885
|
|
412
|
+
backtrader/indicators/contrib/xrvi_indicator.py,sha256=99kq4uV2e50ZBHdcgKy4JFc2TeTDWpW13lPZYHCkdUA,4978
|
|
413
|
+
backtrader/indicators/contrib/zero_lag_macd.py,sha256=nE78hHM97uM8dohT555-4c-fns1Yvp52rhg0iYnHaDk,1135
|
|
414
|
+
backtrader/indicators/contrib/zig_zag_recent_pivot_signal.py,sha256=lUkxQBrII5wQHLh1WIIBaVckbCHK_YqW6epdCWE4TnU,3337
|
|
415
|
+
backtrader/indicators/contrib/zpf_indicator.py,sha256=0tb7MkcAmlBZIDJmwICQ9xNYRnl1xO0-bcS9LUItUdQ,3896
|
|
416
|
+
backtrader/live_trading/__init__.py,sha256=qdwL7927Wn8oAyM47QHJd2soFZrBFGL1U5NI3jo3lEg,501
|
|
417
|
+
backtrader/live_trading/interface.py,sha256=-rhzGVH1N8paHdv8o5zHM4PuhatkTImSywis9dJRegU,9438
|
|
418
|
+
backtrader/mixins/__init__.py,sha256=Myb3KYW60RV-p_ZybqpWA31fi-NJivgPcSPe_XHVRyU,479
|
|
419
|
+
backtrader/mixins/singleton.py,sha256=B_1BSjEy26Jd2BiO9kjoPs8YTlFlEoCJVhCNd-DoGDg,3838
|
|
420
|
+
backtrader/observers/__init__.py,sha256=X4Wl6agZRd_Ukqv4Cz1w_S5DC6TPIjb6uABJtc5TeJ0,1476
|
|
421
|
+
backtrader/observers/benchmark.py,sha256=0_wxXjM2vIoQUaAo-Ej5S9UZxs1sk4pgUsajKT0B7Ig,4128
|
|
422
|
+
backtrader/observers/broker.py,sha256=pbLrHrW17NxKH5taP5l9aH4zzq7Lxfe2CGZbsYSkcJ0,4529
|
|
423
|
+
backtrader/observers/buysell.py,sha256=1Bd4RWdME4fpCGbejOmjLFisRAF3dtrK8vaQaTg58BU,4557
|
|
424
|
+
backtrader/observers/drawdown.py,sha256=x7r2Me-1BJdK_buvmXSIDYZ3mFOkM9mXSEWp1ceKc14,4061
|
|
425
|
+
backtrader/observers/logreturns.py,sha256=GJGtj9D7LzLX9T0l9zZ_TjMTNS6j8KUBo6-g7XrPW9I,3235
|
|
426
|
+
backtrader/observers/timereturn.py,sha256=LqlJOinyUIZnnE8NhUkhWp_YLp1ZiDGKgZODjSbIU2Q,2693
|
|
427
|
+
backtrader/observers/trade_logger.py,sha256=Z8Yn0jr__wepqS3V6LM0hp7-q46948TIm_YhJhDa4TQ,119697
|
|
428
|
+
backtrader/observers/tradelogger.py,sha256=OOsSwxx5YeSvs-AT1xb7zwXQk18YbOY-RgTr7tL889o,159
|
|
429
|
+
backtrader/observers/trades.py,sha256=yhOJzV46517ZtSe3Mnh3fV7qEQqquahDZMjpsfgVICo,7278
|
|
430
|
+
backtrader/plot/__init__.py,sha256=KBDEbdy3jEEXcKU5mKlqu6TNcf-H7mu7CS4E1jOYu5c,1536
|
|
431
|
+
backtrader/plot/finance.py,sha256=XqZ5r1Tk1599waCPNwy5TAWTnRaiAsDKEmDdguxAFeQ,34708
|
|
432
|
+
backtrader/plot/formatters.py,sha256=p8K2osURbd4aazXu5dVmOIDFLobrHNQBMmWZ8CKb2rY,6721
|
|
433
|
+
backtrader/plot/locator.py,sha256=dJ9ErhzBdI2Hyv1m5BuH7zbQ9cYOTfC485KiKj7e4AA,12116
|
|
434
|
+
backtrader/plot/multicursor.py,sha256=0ubAdZyTOWO-vSCZFBzIpVwHBRNtIVxDEMaI7f3AtkA,18349
|
|
435
|
+
backtrader/plot/plot.py,sha256=FFWOWJdTy0K-Sy5xqrIM7MUdCfbXCTjTkR25Idx490A,99811
|
|
436
|
+
backtrader/plot/plot_plotly.py,sha256=TM6rPYSTN7Mi0KyyfaC3V_IynUkva6lsckivbU1kHt0,46462
|
|
437
|
+
backtrader/plot/scheme.py,sha256=-WlYSLm79ZRu-p_MJp9SgY9Opg3d16_Oclv-51R8Oz8,9030
|
|
438
|
+
backtrader/plot/utils.py,sha256=rptjBCHA6a_UL9pqi4gnEGsEK4zFehHWaY07yNuyuRQ,2715
|
|
439
|
+
backtrader/reports/__init__.py,sha256=z2gkJwUntc2Y0DRScEgysnmoA8oojC-ojDJr5qaRc7c,1027
|
|
440
|
+
backtrader/reports/charts.py,sha256=EcuJfV_4mb4Q4DPfEIREkgoP6PvyQD9bQfe7hOGs7HI,11633
|
|
441
|
+
backtrader/reports/performance.py,sha256=7u7ICzx0sLqm3xt8YdRHbXwa1YRCooio-fLICfBdI5I,22353
|
|
442
|
+
backtrader/reports/reporter.py,sha256=yxuq1kj1tbw-l_CBp_EB_81lDvw8SAW2VSBFmoAeOwY,22152
|
|
443
|
+
backtrader/signals/__init__.py,sha256=-4H6DHB9COhuVC_ICclKFGMTrYmMYHxi4Itvnu52wUY,600
|
|
444
|
+
backtrader/sizers/__init__.py,sha256=QZjrbLVJDmWSkoonYP2hDgEncLY1zpHEn1fheOcl-io,953
|
|
445
|
+
backtrader/sizers/fixedsize.py,sha256=1j2jRb4hUGa9E0AMw9uA8Z8rds1zxzTN3tssn23pSus,5497
|
|
446
|
+
backtrader/sizers/percents_sizer.py,sha256=qykHjIJh5CSlvz7bZOxV3V-LRbMrLBrkDSGMCFsdfgE,3697
|
|
447
|
+
backtrader/stores/__init__.py,sha256=BvI1GSgbhLUrTyyxRZc2HeTzqS0PgoAyaDh56r5ROpA,1071
|
|
448
|
+
backtrader/stores/btapistore.py,sha256=aNjF7yO_fV7oFohJh6Krje1YznmLQ6K4_4ZjWo5_X6c,691327
|
|
449
|
+
backtrader/stores/livestore.py,sha256=9grkAsRzIqcAX8fJeNW5YOyK1_0pjthW0YGkkSQNSxg,4488
|
|
450
|
+
backtrader/stores/vchartfile.py,sha256=eZVoJxvhEbRQwecl8QmBznniWoWVD0k7R8XjqYF-Lg8,2591
|
|
451
|
+
backtrader/utils/__init__.py,sha256=1fDJfw7f5dP2SjaJtOYFsXM1EfR5-sMmG_q8Jvd9Uug,2258
|
|
452
|
+
backtrader/utils/autodict.py,sha256=Sr9NzEfKbF57nNnmCFI-qGKv3Tu8svHw9Nk8uB6Nb4Y,7846
|
|
453
|
+
backtrader/utils/date.py,sha256=ZQmB8_IZRcMQLbhoY44dh7NZX4y8OFsQOmHQZUnOZvo,1794
|
|
454
|
+
backtrader/utils/dateintern.py,sha256=eIv5oMkZX6pqGHfRwHZDanfiQTqdHEm_uSi2J2ZzGfg,15533
|
|
455
|
+
backtrader/utils/flushfile.py,sha256=LltCGtG4we56lHaqGNqgAU3TzML23VuT2-JOTyWUh5E,3055
|
|
456
|
+
backtrader/utils/fractal.py,sha256=KMke1LTLHiojEC6TlOvb6Wj91bSBBfViFV8F2VCFh3s,3338
|
|
457
|
+
backtrader/utils/get_metrics.py,sha256=-1ZBp-XIGPSRkThF4O6M_AjomkkieoCWYpcojp6D5ZM,3742
|
|
458
|
+
backtrader/utils/load_data.py,sha256=drwwD24WT5mO7dX7XprovRACNdhggM90igoZccSUqgQ,6615
|
|
459
|
+
backtrader/utils/log_message.py,sha256=RBDqv5tWnLm-FX5E2BbKPvA-R1HCb9vOBdNumAIldwY,37326
|
|
460
|
+
backtrader/utils/ordereddefaultdict.py,sha256=Bb_vxe8ZxbE9nVlvIRUJlZ2AZelt3hpk3LQigAAU_c4,2952
|
|
461
|
+
backtrader/utils/py3.py,sha256=hAqlS2aObuDQ3iX8wYjm38S8JLAZjZ7YKv0ydId7RvI,8273
|
|
462
|
+
back_trader_python-1.4.0.dist-info/METADATA,sha256=TE5gONg7dPVte5QFHSV-G92T_enWs8XKLR9GOi75XWk,49369
|
|
463
|
+
back_trader_python-1.4.0.dist-info/WHEEL,sha256=YVMoNqKzERt-wjUZwJ33xBGAwnFl-4cqbYkTtWa4itE,91
|
|
464
|
+
back_trader_python-1.4.0.dist-info/top_level.txt,sha256=VpSC5MJzXVKdKPBeBCoM1rvYa-sYFwvIRP9zmD-dGfU,11
|
|
465
|
+
back_trader_python-1.4.0.dist-info/RECORD,,
|