├── .env ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.MD ├── docker-compose.yml ├── hawkbot ├── __init__.py ├── backtest │ ├── __init__.py │ ├── backtest_candlestore.py │ ├── backtest_utils.py │ ├── backtester.py │ ├── data_classes.py │ ├── data_loader.py │ ├── event_listeners │ │ ├── __init__.py │ │ ├── event_listener.py │ │ ├── history_listener.py │ │ └── live_trade_listener.py │ ├── exchange │ │ ├── __init__.py │ │ ├── data_classes.py │ │ └── exchange_simulator.py │ └── reporting │ │ ├── __init__.py │ │ ├── chart_reporter.py │ │ ├── config_reporter.py │ │ ├── drawdown_reporter.py │ │ ├── equity_reporter.py │ │ ├── order_export_reporter.py │ │ ├── overview_reporter.py │ │ ├── reporter.py │ │ └── upnl_reporter.py ├── bot.py ├── core │ ├── __init__.py │ ├── balance_processor.py │ ├── candlestore │ │ ├── __init__.py │ │ ├── candle_repository.py │ │ ├── candle_utils.py │ │ ├── candlestore.py │ │ ├── candlestore_client.py │ │ ├── candlestore_listener.py │ │ ├── candlestore_standalone.py │ │ ├── influx_candlestore_client.py │ │ └── orm_classes.py │ ├── config │ │ ├── __init__.py │ │ ├── active_config_manager.py │ │ └── bot_config.py │ ├── data_classes.py │ ├── dynamic_entry │ │ ├── __init__.py │ │ ├── candidate_state.py │ │ └── dynamic_entry_selector.py │ ├── entry_manager.py │ ├── filters │ │ ├── __init__.py │ │ ├── filter.py │ │ └── filter_loader.py │ ├── health_monitor.py │ ├── license │ │ ├── __init__.py │ │ └── utils.py │ ├── liquidation │ │ ├── __init__.py │ │ ├── liquidation_repository.py │ │ ├── liquidationstore.py │ │ ├── memory_repository.py │ │ ├── orm_classes.py │ │ ├── redis_repository.py │ │ └── sqlite_repository.py │ ├── lockable_session.py │ ├── mode_processor.py │ ├── model.py │ ├── order_executor.py │ ├── order_update_processor.py │ ├── orderbook │ │ ├── __init__.py │ │ └── orderbook.py │ ├── plugins │ │ ├── __init__.py │ │ ├── plugin.py │ │ └── plugin_loader.py │ ├── position_processor.py │ ├── redis_keys.py │ ├── rest_server │ │ ├── __init__.py │ │ └── core_rest_server.py │ ├── state_synchronizer.py │ ├── strategy │ │ ├── __init__.py │ │ ├── data_classes.py │ │ ├── strategy_executor.py │ │ ├── strategy_factory.py │ │ └── strategy_process.py │ ├── tick_listener.py │ ├── tick_processor.py │ ├── tickstore │ │ ├── __init__.py │ │ ├── orm_classes.py │ │ ├── redis_repository.py │ │ ├── tick_repository.py │ │ ├── tickstore.py │ │ └── tickstore_listener.py │ └── time_provider.py ├── exceptions.py ├── exchange │ ├── __init__.py │ ├── binance │ │ ├── __init__.py │ │ ├── aggregate_trade_process.py │ │ ├── binance.py │ │ ├── binance_testnet.py │ │ ├── constants.py │ │ ├── liquidation_process.py │ │ ├── mappings.py │ │ ├── orderbook_process.py │ │ ├── ticker_process.py │ │ └── userdata_process.py │ ├── binance_spot.py │ ├── binance_spot_testnet.py │ ├── bybit │ │ ├── __init__.py │ │ ├── aggregate_trade_process.py │ │ ├── bybit.py │ │ ├── bybit_testnet.py │ │ ├── mappings.py │ │ ├── orderbook │ │ │ ├── __init__.py │ │ │ └── orderbook_websocket.py │ │ ├── orderbook_process.py │ │ └── userdata_process.py │ ├── ccxt │ │ ├── __init__.py │ │ ├── aggregate_trade_process.py │ │ ├── ccxt.py │ │ ├── constants.py │ │ ├── mappings.py │ │ ├── userdata_process.py │ │ └── utils.py │ ├── data_classes.py │ ├── exchange.py │ ├── exchange_factory.py │ ├── kite │ │ ├── __init__.py │ │ ├── aggregate_trade_process.py │ │ ├── constants.py │ │ ├── kite.py │ │ ├── mapping.py │ │ └── userdata_process.py │ ├── mexc │ │ ├── __init__.py │ │ └── mexc_support.py │ ├── mexc_spot │ │ └── __init__.py │ └── oanda │ │ ├── __init__.py │ │ ├── oanda.py │ │ └── oanda_practice.py ├── filters │ ├── __init__.py │ ├── agefilter │ │ ├── __init__.py │ │ ├── age_filter.py │ │ └── proxy.py │ ├── atrfilter │ │ ├── __init__.py │ │ ├── atr_filter.py │ │ └── proxy.py │ ├── candlevolumefilter │ │ ├── __init__.py │ │ ├── candle_volume_filter.py │ │ └── proxy.py │ ├── csvsymbolfilter │ │ ├── __init__.py │ │ ├── csv_symbol_filter.py │ │ └── proxy.py │ ├── dynamicpricechangepctfilter │ │ ├── __init__.py │ │ ├── dynamic_pricechangepct_filter.py │ │ └── proxy.py │ ├── emareversalfilter │ │ ├── __init__.py │ │ ├── ema_reversal_filter.py │ │ └── proxy.py │ ├── filter_template.py │ ├── fundingratefilter │ │ ├── __init__.py │ │ ├── fundingrate_filter.py │ │ └── proxy.py │ ├── last24hpricechangepctfilter │ │ ├── __init__.py │ │ ├── last_24h_pricechangepct_filter.py │ │ └── proxy.py │ ├── last24hvolumefilter │ │ ├── __init__.py │ │ ├── last_24h_volume_filter.py │ │ └── proxy.py │ ├── levelfilter │ │ ├── __init__.py │ │ ├── level_filter.py │ │ └── proxy.py │ ├── maxquantityfilter │ │ ├── __init__.py │ │ ├── maxquantityfilter.py │ │ └── proxy.py │ ├── minnotionalfilter │ │ ├── __init__.py │ │ ├── min_notional_filter.py │ │ └── proxy.py │ ├── proxy.py │ ├── randomizer │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── randomizer_filter.py │ ├── sublistfilter │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── sub_list_filter.py │ ├── symbolfilter │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── symbol_filter.py │ ├── tickcountfilter │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── tickcount_filter.py │ ├── trendreversalfilter │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── trend_reversal_filter.py │ └── volatilityfilter │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── volatility_filter.py ├── logging │ ├── __init__.py │ ├── data_classes.py │ ├── logging_globals.py │ └── user_log.py ├── plugins │ ├── __init__.py │ ├── autoreduce │ │ ├── __init__.py │ │ ├── autoreduce_plugin.py │ │ └── proxy.py │ ├── clustering_sr │ │ ├── __init__.py │ │ ├── algo_type.py │ │ ├── algos │ │ │ ├── __init__.py │ │ │ ├── algo.py │ │ │ ├── bmeans_algo.py │ │ │ ├── custom_algo.py │ │ │ ├── dmeans_algo.py │ │ │ ├── immediate_linear_algo.py │ │ │ ├── kmeans_algo.py │ │ │ ├── lin_algo.py │ │ │ ├── lin_linear_peaks_troughs_highlow_algo.py │ │ │ ├── lin_peakstroughs_highlow_algo.py │ │ │ ├── linear_algo.py │ │ │ ├── log_algo.py │ │ │ ├── peakstroughs_algo.py │ │ │ └── peakstroughs_highlow_algo.py │ │ ├── clustering_sr_plugin.py │ │ ├── data_classes.py │ │ └── proxy.py │ ├── cryptofeed_plugin │ │ ├── __init__.py │ │ ├── cryptofeed.py │ │ ├── cryptofeed_plugin.py │ │ └── proxy.py │ ├── data_capture_plugin │ │ ├── __init__.py │ │ ├── data_capture_plugin.py │ │ └── proxy.py │ ├── dca │ │ ├── __init__.py │ │ ├── dca_plugin.py │ │ └── proxy.py │ ├── gridstorage │ │ ├── __init__.py │ │ ├── data_classes.py │ │ ├── gridstorage_plugin.py │ │ ├── memory_repository.py │ │ ├── orm_classes.py │ │ ├── persistent_repository.py │ │ └── proxy.py │ ├── gtfo │ │ ├── __init__.py │ │ ├── gtfo_plugin.py │ │ └── proxy.py │ ├── hedge_plugin │ │ ├── __init__.py │ │ ├── hedge_plugin.py │ │ └── proxy.py │ ├── income_trigger_plugin │ │ ├── __init__.py │ │ ├── income_trigger_plugin.py │ │ └── proxy.py │ ├── log_reporter │ │ ├── __init__.py │ │ ├── log_reporter_plugin.py │ │ └── proxy.py │ ├── multi_autoreduce_plugin │ │ ├── __init__.py │ │ ├── multi_autoreduce_plugin.py │ │ └── proxy.py │ ├── ob_tp │ │ ├── __init__.py │ │ ├── ob_tp_plugin.py │ │ └── proxy.py │ ├── orderbook_sr │ │ ├── __init__.py │ │ ├── data_classes.py │ │ ├── orderbook_sr.py │ │ └── proxy.py │ ├── plugin_example.py │ ├── plugin_template.py │ ├── profit_transfer │ │ ├── __init__.py │ │ ├── orm_classes.py │ │ ├── profit_transfer_plugin.py │ │ └── proxy.py │ ├── proxy.py │ ├── rest_server │ │ ├── __init__.py │ │ ├── proxy.py │ │ ├── rest_flask_app.py │ │ ├── rest_server.py │ │ └── web │ │ │ ├── _redirects │ │ │ ├── asset-manifest.json │ │ │ ├── favicon │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ └── favicon.ico │ │ │ ├── fonts │ │ │ ├── CircularStd-Bold.otf │ │ │ ├── CircularStd-Book.otf │ │ │ ├── CircularStd-Medium.otf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ └── index.css │ │ │ ├── icons │ │ │ ├── ic_analytics.svg │ │ │ ├── ic_banking.svg │ │ │ ├── ic_blog.svg │ │ │ ├── ic_booking.svg │ │ │ ├── ic_calendar.svg │ │ │ ├── ic_cart.svg │ │ │ ├── ic_chat.svg │ │ │ ├── ic_dashboard.svg │ │ │ ├── ic_ecommerce.svg │ │ │ ├── ic_kanban.svg │ │ │ ├── ic_mail.svg │ │ │ └── ic_user.svg │ │ │ ├── index.html │ │ │ ├── logo │ │ │ ├── BTC_logo.svg │ │ │ ├── logo_full.jpg │ │ │ ├── logo_full.svg │ │ │ └── logo_single.svg │ │ │ ├── manifest.json │ │ │ ├── robots.txt │ │ │ └── static │ │ │ ├── css │ │ │ ├── main.54de06ef.css │ │ │ └── main.54de06ef.css.map │ │ │ └── js │ │ │ ├── 128.5231f75c.chunk.js │ │ │ ├── 128.5231f75c.chunk.js.map │ │ │ ├── 206.6c46976f.chunk.js │ │ │ ├── 206.6c46976f.chunk.js.map │ │ │ ├── 317.a2869282.chunk.js │ │ │ ├── 317.a2869282.chunk.js.map │ │ │ ├── 553.36f54be6.chunk.js │ │ │ ├── 553.36f54be6.chunk.js.LICENSE.txt │ │ │ ├── 553.36f54be6.chunk.js.map │ │ │ ├── 678.65a762ac.chunk.js │ │ │ ├── 678.65a762ac.chunk.js.map │ │ │ ├── main.2987b3fe.js │ │ │ ├── main.2987b3fe.js.LICENSE.txt │ │ │ └── main.2987b3fe.js.map │ ├── scorestore │ │ ├── __init__.py │ │ ├── data_classes.py │ │ ├── orm_classes.py │ │ ├── proxy.py │ │ ├── score_repository.py │ │ └── score_store.py │ ├── stoploss │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── stoploss_plugin.py │ ├── stoplosses │ │ ├── __init__.py │ │ ├── data_classes.py │ │ ├── proxy.py │ │ └── stoplosses_plugin.py │ ├── timeframe_sr │ │ ├── __init__.py │ │ ├── data_classes.py │ │ ├── orm_classes.py │ │ ├── proxy.py │ │ ├── timeframe_sr_plugin.py │ │ └── timeframe_sr_repository.py │ ├── tp │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── tp_plugin.py │ ├── tp_refill │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── tp_refill_plugin.py │ └── wiggle │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── wiggle_plugin.py ├── redis_utils.py ├── strategies │ ├── BasicLongStrategy │ │ ├── __init__.py │ │ ├── basiclongstrategy.py │ │ └── proxy.py │ ├── BasicShortStrategy │ │ ├── __init__.py │ │ ├── basicshortstrategy.py │ │ └── proxy.py │ ├── BigLongStrategy │ │ ├── __init__.py │ │ ├── biglongstrategy.py │ │ └── proxy.py │ ├── BigShortStrategy │ │ ├── __init__.py │ │ ├── bigshortstrategy.py │ │ └── proxy.py │ ├── CatcherEquilibriumLongStrategy │ │ ├── CatcherEquilibriumLongStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── CatcherEquilibriumShortStrategy │ │ ├── CatcherEquilibriumShortStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── DynamicCatcherEquilibriumLongStrategy │ │ ├── DynamicCatcherEquilibriumLongStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── DynamicCatcherEquilibriumShortStrategy │ │ ├── DynamicCatcherEquilibriumShortStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── DynamicCatcherLongStrategy │ │ ├── DynamicCatcherLongStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── DynamicCatcherShortStrategy │ │ ├── DynamicCatcherShortStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── DynamicFastCatcherLongStrategy │ │ ├── DynamicFastCatcherLongStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── EmaFlipLongStrategy │ │ ├── EmaFlipLongStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── EmaFlipShortStrategy │ │ └── __init__.py │ ├── FastCatcherLongStrategy │ │ ├── FastCatcherLongStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── ManualHedgedWiggleStrategy │ │ ├── ManualHedgedWiggleStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── ManualScalpLongStrategy │ │ ├── ManualScalpLongStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── ManualScalpShortStrategy │ │ ├── ManualScalpShortStrategy.py │ │ ├── __init__.py │ │ └── proxy.py │ ├── MultiPositionLongStrategy │ │ ├── __init__.py │ │ ├── multipositionlongstrategy.py │ │ └── proxy.py │ ├── NewMultiPositionLongStrategy │ │ ├── __init__.py │ │ ├── newmultipositionlongstrategy.py │ │ └── proxy.py │ ├── TrailingEntryLongStrategy │ │ ├── __init__.py │ │ ├── proxy.py │ │ └── trailingentrylongstrategy.py │ ├── __init__.py │ ├── abstract_base_strategy.py │ ├── proxy.py │ ├── strategy.py │ └── strategy_template.py └── utils.py ├── hawkbot_logo.png ├── hawkbot_rt ├── __init__.py ├── py310 │ ├── darwin_x86_64 │ │ └── pyarmor_runtime.so │ ├── linux_aarch64 │ │ └── pyarmor_runtime.so │ ├── linux_x86_64 │ │ └── pyarmor_runtime.so │ └── windows_x86_64 │ │ └── pyarmor_runtime.pyd ├── py311 │ ├── darwin_aarch64 │ │ └── pyarmor_runtime.so │ ├── linux_aarch64 │ │ └── pyarmor_runtime.so │ ├── linux_x86_64 │ │ └── pyarmor_runtime.so │ └── windows_x86_64 │ │ └── pyarmor_runtime.pyd ├── py312 │ ├── darwin_aarch64 │ │ └── pyarmor_runtime.so │ ├── linux_aarch64 │ │ └── pyarmor_runtime.so │ ├── linux_x86_64 │ │ └── pyarmor_runtime.so │ └── windows_x86_64 │ │ └── pyarmor_runtime.pyd ├── py38 │ ├── darwin_x86_64 │ │ └── pyarmor_runtime.so │ ├── linux_aarch64 │ │ └── pyarmor_runtime.so │ ├── linux_x86_64 │ │ └── pyarmor_runtime.so │ └── windows_x86_64 │ │ └── pyarmor_runtime.pyd └── py39 │ ├── darwin_aarch64 │ └── pyarmor_runtime.so │ ├── linux_aarch64 │ └── pyarmor_runtime.so │ ├── linux_x86_64 │ └── pyarmor_runtime.so │ └── windows_x86_64 │ └── pyarmor_runtime.pyd ├── logging.yaml ├── requirements.txt ├── site ├── 404.html ├── advanced │ └── index.html ├── architecture.drawio ├── architecture_2.drawio ├── assets │ ├── _mkdocstrings.css │ ├── images │ │ └── favicon.png │ ├── javascripts │ │ ├── lunr │ │ │ ├── min │ │ │ │ ├── lunr.ar.min.js │ │ │ │ ├── lunr.da.min.js │ │ │ │ ├── lunr.de.min.js │ │ │ │ ├── lunr.du.min.js │ │ │ │ ├── lunr.el.min.js │ │ │ │ ├── lunr.es.min.js │ │ │ │ ├── lunr.fi.min.js │ │ │ │ ├── lunr.fr.min.js │ │ │ │ ├── lunr.he.min.js │ │ │ │ ├── lunr.hi.min.js │ │ │ │ ├── lunr.hu.min.js │ │ │ │ ├── lunr.hy.min.js │ │ │ │ ├── lunr.it.min.js │ │ │ │ ├── lunr.ja.min.js │ │ │ │ ├── lunr.jp.min.js │ │ │ │ ├── lunr.kn.min.js │ │ │ │ ├── lunr.ko.min.js │ │ │ │ ├── lunr.multi.min.js │ │ │ │ ├── lunr.nl.min.js │ │ │ │ ├── lunr.no.min.js │ │ │ │ ├── lunr.pt.min.js │ │ │ │ ├── lunr.ro.min.js │ │ │ │ ├── lunr.ru.min.js │ │ │ │ ├── lunr.sa.min.js │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ ├── lunr.sv.min.js │ │ │ │ ├── lunr.ta.min.js │ │ │ │ ├── lunr.te.min.js │ │ │ │ ├── lunr.th.min.js │ │ │ │ ├── lunr.tr.min.js │ │ │ │ ├── lunr.vi.min.js │ │ │ │ └── lunr.zh.min.js │ │ │ ├── tinyseg.js │ │ │ └── wordcut.js │ │ └── workers │ │ │ ├── search.b8dbb3d2.min.js │ │ │ └── search.b8dbb3d2.min.js.map │ └── stylesheets │ │ ├── palette.06af60db.min.css │ │ └── palette.06af60db.min.css.map ├── backtest │ └── index.html ├── example_configs │ └── index.html ├── exchanges │ └── index.html ├── framework │ └── index.html ├── img │ ├── favicon.ico │ ├── hawkbot_iphone.png │ ├── hawkbot_iphone2x.png │ ├── hawkbot_logo.png │ ├── hawkbot_logo.svg │ ├── hawkbot_logo_500x500.png │ ├── hawkbot_logo_500x500_space.png │ ├── hawkbot_macbookpro.png │ ├── hawkbot_macbookpro2x.png │ ├── hawkbot_solo_iphone.png │ ├── hawkbot_solo_iphone2x.png │ ├── hawkbot_solo_macbookpro.png │ ├── hawkbot_solo_macbookpro2x.png │ ├── hawkbot_solo_ultrawide.png │ ├── hawkbot_ultrawide.png │ ├── terminal_screenshot.png │ └── web_screenshot.jpg ├── index.html ├── installation │ └── index.html ├── modes │ └── index.html ├── objects.inv ├── plugins │ ├── dca_plugin │ │ └── index.html │ ├── hedge_plugin │ │ └── index.html │ ├── index.html │ ├── multi_autoreduce_plugin │ │ └── index.html │ └── tp_plugin │ │ └── index.html ├── sitemap.xml ├── sitemap.xml.gz ├── strategies │ └── index.html └── ui │ └── index.html ├── trade.py └── user_data ├── account.example.json ├── config-samples ├── config.example.advanced.1.json ├── config.example.advanced.2.json ├── config.example.basic.1.json ├── config.example.basic.2.json ├── config.example.basic.3.json ├── config.fixed_range.json ├── config_hardhedge.json └── config_tight_grid.json ├── config.all-parameters.json └── config_blank.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/README.MD -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /hawkbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/__init__.py -------------------------------------------------------------------------------- /hawkbot/backtest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/__init__.py -------------------------------------------------------------------------------- /hawkbot/backtest/backtest_candlestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/backtest_candlestore.py -------------------------------------------------------------------------------- /hawkbot/backtest/backtest_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/backtest_utils.py -------------------------------------------------------------------------------- /hawkbot/backtest/backtester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/backtester.py -------------------------------------------------------------------------------- /hawkbot/backtest/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/data_classes.py -------------------------------------------------------------------------------- /hawkbot/backtest/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/data_loader.py -------------------------------------------------------------------------------- /hawkbot/backtest/event_listeners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/event_listeners/__init__.py -------------------------------------------------------------------------------- /hawkbot/backtest/event_listeners/event_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/event_listeners/event_listener.py -------------------------------------------------------------------------------- /hawkbot/backtest/event_listeners/history_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/event_listeners/history_listener.py -------------------------------------------------------------------------------- /hawkbot/backtest/event_listeners/live_trade_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/event_listeners/live_trade_listener.py -------------------------------------------------------------------------------- /hawkbot/backtest/exchange/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/exchange/__init__.py -------------------------------------------------------------------------------- /hawkbot/backtest/exchange/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/exchange/data_classes.py -------------------------------------------------------------------------------- /hawkbot/backtest/exchange/exchange_simulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/exchange/exchange_simulator.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/__init__.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/chart_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/chart_reporter.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/config_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/config_reporter.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/drawdown_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/drawdown_reporter.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/equity_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/equity_reporter.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/order_export_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/order_export_reporter.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/overview_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/overview_reporter.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/reporter.py -------------------------------------------------------------------------------- /hawkbot/backtest/reporting/upnl_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/backtest/reporting/upnl_reporter.py -------------------------------------------------------------------------------- /hawkbot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/bot.py -------------------------------------------------------------------------------- /hawkbot/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/balance_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/balance_processor.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/candle_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/candle_repository.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/candle_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/candle_utils.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/candlestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/candlestore.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/candlestore_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/candlestore_client.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/candlestore_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/candlestore_listener.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/candlestore_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/candlestore_standalone.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/influx_candlestore_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/influx_candlestore_client.py -------------------------------------------------------------------------------- /hawkbot/core/candlestore/orm_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/candlestore/orm_classes.py -------------------------------------------------------------------------------- /hawkbot/core/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/config/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/config/active_config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/config/active_config_manager.py -------------------------------------------------------------------------------- /hawkbot/core/config/bot_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/config/bot_config.py -------------------------------------------------------------------------------- /hawkbot/core/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/data_classes.py -------------------------------------------------------------------------------- /hawkbot/core/dynamic_entry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/dynamic_entry/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/dynamic_entry/candidate_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/dynamic_entry/candidate_state.py -------------------------------------------------------------------------------- /hawkbot/core/dynamic_entry/dynamic_entry_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/dynamic_entry/dynamic_entry_selector.py -------------------------------------------------------------------------------- /hawkbot/core/entry_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/entry_manager.py -------------------------------------------------------------------------------- /hawkbot/core/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/filters/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/filters/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/filters/filter.py -------------------------------------------------------------------------------- /hawkbot/core/filters/filter_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/filters/filter_loader.py -------------------------------------------------------------------------------- /hawkbot/core/health_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/health_monitor.py -------------------------------------------------------------------------------- /hawkbot/core/license/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/license/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/license/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/license/utils.py -------------------------------------------------------------------------------- /hawkbot/core/liquidation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/liquidation/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/liquidation/liquidation_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/liquidation/liquidation_repository.py -------------------------------------------------------------------------------- /hawkbot/core/liquidation/liquidationstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/liquidation/liquidationstore.py -------------------------------------------------------------------------------- /hawkbot/core/liquidation/memory_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/liquidation/memory_repository.py -------------------------------------------------------------------------------- /hawkbot/core/liquidation/orm_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/liquidation/orm_classes.py -------------------------------------------------------------------------------- /hawkbot/core/liquidation/redis_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/liquidation/redis_repository.py -------------------------------------------------------------------------------- /hawkbot/core/liquidation/sqlite_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/liquidation/sqlite_repository.py -------------------------------------------------------------------------------- /hawkbot/core/lockable_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/lockable_session.py -------------------------------------------------------------------------------- /hawkbot/core/mode_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/mode_processor.py -------------------------------------------------------------------------------- /hawkbot/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/model.py -------------------------------------------------------------------------------- /hawkbot/core/order_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/order_executor.py -------------------------------------------------------------------------------- /hawkbot/core/order_update_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/order_update_processor.py -------------------------------------------------------------------------------- /hawkbot/core/orderbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/orderbook/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/orderbook/orderbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/orderbook/orderbook.py -------------------------------------------------------------------------------- /hawkbot/core/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/plugins/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/plugins/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/plugins/plugin.py -------------------------------------------------------------------------------- /hawkbot/core/plugins/plugin_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/plugins/plugin_loader.py -------------------------------------------------------------------------------- /hawkbot/core/position_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/position_processor.py -------------------------------------------------------------------------------- /hawkbot/core/redis_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/redis_keys.py -------------------------------------------------------------------------------- /hawkbot/core/rest_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/rest_server/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/rest_server/core_rest_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/rest_server/core_rest_server.py -------------------------------------------------------------------------------- /hawkbot/core/state_synchronizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/state_synchronizer.py -------------------------------------------------------------------------------- /hawkbot/core/strategy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/strategy/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/strategy/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/strategy/data_classes.py -------------------------------------------------------------------------------- /hawkbot/core/strategy/strategy_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/strategy/strategy_executor.py -------------------------------------------------------------------------------- /hawkbot/core/strategy/strategy_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/strategy/strategy_factory.py -------------------------------------------------------------------------------- /hawkbot/core/strategy/strategy_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/strategy/strategy_process.py -------------------------------------------------------------------------------- /hawkbot/core/tick_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tick_listener.py -------------------------------------------------------------------------------- /hawkbot/core/tick_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tick_processor.py -------------------------------------------------------------------------------- /hawkbot/core/tickstore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tickstore/__init__.py -------------------------------------------------------------------------------- /hawkbot/core/tickstore/orm_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tickstore/orm_classes.py -------------------------------------------------------------------------------- /hawkbot/core/tickstore/redis_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tickstore/redis_repository.py -------------------------------------------------------------------------------- /hawkbot/core/tickstore/tick_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tickstore/tick_repository.py -------------------------------------------------------------------------------- /hawkbot/core/tickstore/tickstore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tickstore/tickstore.py -------------------------------------------------------------------------------- /hawkbot/core/tickstore/tickstore_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/tickstore/tickstore_listener.py -------------------------------------------------------------------------------- /hawkbot/core/time_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/core/time_provider.py -------------------------------------------------------------------------------- /hawkbot/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exceptions.py -------------------------------------------------------------------------------- /hawkbot/exchange/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/aggregate_trade_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/aggregate_trade_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/binance.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/binance_testnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/binance_testnet.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/constants.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/liquidation_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/liquidation_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/mappings.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/orderbook_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/orderbook_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/ticker_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/ticker_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance/userdata_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance/userdata_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance_spot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance_spot.py -------------------------------------------------------------------------------- /hawkbot/exchange/binance_spot_testnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/binance_spot_testnet.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/aggregate_trade_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/aggregate_trade_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/bybit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/bybit.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/bybit_testnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/bybit_testnet.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/mappings.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/orderbook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/orderbook/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/orderbook/orderbook_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/orderbook/orderbook_websocket.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/orderbook_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/orderbook_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/bybit/userdata_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/bybit/userdata_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/ccxt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/ccxt/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/ccxt/aggregate_trade_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/ccxt/aggregate_trade_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/ccxt/ccxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/ccxt/ccxt.py -------------------------------------------------------------------------------- /hawkbot/exchange/ccxt/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/ccxt/constants.py -------------------------------------------------------------------------------- /hawkbot/exchange/ccxt/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/ccxt/mappings.py -------------------------------------------------------------------------------- /hawkbot/exchange/ccxt/userdata_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/ccxt/userdata_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/ccxt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/ccxt/utils.py -------------------------------------------------------------------------------- /hawkbot/exchange/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/data_classes.py -------------------------------------------------------------------------------- /hawkbot/exchange/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/exchange.py -------------------------------------------------------------------------------- /hawkbot/exchange/exchange_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/exchange_factory.py -------------------------------------------------------------------------------- /hawkbot/exchange/kite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/kite/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/kite/aggregate_trade_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/kite/aggregate_trade_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/kite/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/kite/constants.py -------------------------------------------------------------------------------- /hawkbot/exchange/kite/kite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/kite/kite.py -------------------------------------------------------------------------------- /hawkbot/exchange/kite/mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/kite/mapping.py -------------------------------------------------------------------------------- /hawkbot/exchange/kite/userdata_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/kite/userdata_process.py -------------------------------------------------------------------------------- /hawkbot/exchange/mexc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/mexc/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/mexc/mexc_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/mexc/mexc_support.py -------------------------------------------------------------------------------- /hawkbot/exchange/mexc_spot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/mexc_spot/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/oanda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/oanda/__init__.py -------------------------------------------------------------------------------- /hawkbot/exchange/oanda/oanda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/oanda/oanda.py -------------------------------------------------------------------------------- /hawkbot/exchange/oanda/oanda_practice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/exchange/oanda/oanda_practice.py -------------------------------------------------------------------------------- /hawkbot/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/__init__.py -------------------------------------------------------------------------------- /hawkbot/filters/agefilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/agefilter/age_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/agefilter/age_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/agefilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/agefilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/atrfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/atrfilter/atr_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/atrfilter/atr_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/atrfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/atrfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/candlevolumefilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/candlevolumefilter/candle_volume_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/candlevolumefilter/candle_volume_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/candlevolumefilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/candlevolumefilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/csvsymbolfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/csvsymbolfilter/csv_symbol_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/csvsymbolfilter/csv_symbol_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/csvsymbolfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/csvsymbolfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/dynamicpricechangepctfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/dynamicpricechangepctfilter/dynamic_pricechangepct_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/dynamicpricechangepctfilter/dynamic_pricechangepct_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/dynamicpricechangepctfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/dynamicpricechangepctfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/emareversalfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/emareversalfilter/ema_reversal_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/emareversalfilter/ema_reversal_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/emareversalfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/emareversalfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/filter_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/filter_template.py -------------------------------------------------------------------------------- /hawkbot/filters/fundingratefilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/fundingratefilter/fundingrate_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/fundingratefilter/fundingrate_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/fundingratefilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/fundingratefilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/last24hpricechangepctfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/last24hpricechangepctfilter/last_24h_pricechangepct_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/last24hpricechangepctfilter/last_24h_pricechangepct_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/last24hpricechangepctfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/last24hpricechangepctfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/last24hvolumefilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/last24hvolumefilter/last_24h_volume_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/last24hvolumefilter/last_24h_volume_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/last24hvolumefilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/last24hvolumefilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/levelfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/levelfilter/level_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/levelfilter/level_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/levelfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/levelfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/maxquantityfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/maxquantityfilter/maxquantityfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/maxquantityfilter/maxquantityfilter.py -------------------------------------------------------------------------------- /hawkbot/filters/maxquantityfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/maxquantityfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/minnotionalfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/minnotionalfilter/min_notional_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/minnotionalfilter/min_notional_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/minnotionalfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/minnotionalfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/randomizer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/randomizer/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/randomizer/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/randomizer/randomizer_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/randomizer/randomizer_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/sublistfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/sublistfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/sublistfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/sublistfilter/sub_list_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/sublistfilter/sub_list_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/symbolfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/symbolfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/symbolfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/symbolfilter/symbol_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/symbolfilter/symbol_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/tickcountfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/tickcountfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/tickcountfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/tickcountfilter/tickcount_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/tickcountfilter/tickcount_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/trendreversalfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/trendreversalfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/trendreversalfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/trendreversalfilter/trend_reversal_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/trendreversalfilter/trend_reversal_filter.py -------------------------------------------------------------------------------- /hawkbot/filters/volatilityfilter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/filters/volatilityfilter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/volatilityfilter/proxy.py -------------------------------------------------------------------------------- /hawkbot/filters/volatilityfilter/volatility_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/filters/volatilityfilter/volatility_filter.py -------------------------------------------------------------------------------- /hawkbot/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/logging/__init__.py -------------------------------------------------------------------------------- /hawkbot/logging/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/logging/data_classes.py -------------------------------------------------------------------------------- /hawkbot/logging/logging_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/logging/logging_globals.py -------------------------------------------------------------------------------- /hawkbot/logging/user_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/logging/user_log.py -------------------------------------------------------------------------------- /hawkbot/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/autoreduce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/autoreduce/autoreduce_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/autoreduce/autoreduce_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/autoreduce/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/autoreduce/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algo_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algo_type.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/bmeans_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/bmeans_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/custom_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/custom_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/dmeans_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/dmeans_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/immediate_linear_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/immediate_linear_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/kmeans_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/kmeans_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/lin_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/lin_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/lin_linear_peaks_troughs_highlow_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/lin_linear_peaks_troughs_highlow_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/lin_peakstroughs_highlow_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/lin_peakstroughs_highlow_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/linear_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/linear_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/log_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/log_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/peakstroughs_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/peakstroughs_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/algos/peakstroughs_highlow_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/algos/peakstroughs_highlow_algo.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/clustering_sr_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/clustering_sr_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/data_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/clustering_sr/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/clustering_sr/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/cryptofeed_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/cryptofeed_plugin/cryptofeed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/cryptofeed_plugin/cryptofeed.py -------------------------------------------------------------------------------- /hawkbot/plugins/cryptofeed_plugin/cryptofeed_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/cryptofeed_plugin/cryptofeed_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/cryptofeed_plugin/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/cryptofeed_plugin/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/data_capture_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/data_capture_plugin/data_capture_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/data_capture_plugin/data_capture_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/data_capture_plugin/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/data_capture_plugin/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/dca/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/dca/__init__.py -------------------------------------------------------------------------------- /hawkbot/plugins/dca/dca_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/dca/dca_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/dca/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/dca/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/gridstorage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/gridstorage/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gridstorage/data_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/gridstorage/gridstorage_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gridstorage/gridstorage_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/gridstorage/memory_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gridstorage/memory_repository.py -------------------------------------------------------------------------------- /hawkbot/plugins/gridstorage/orm_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gridstorage/orm_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/gridstorage/persistent_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gridstorage/persistent_repository.py -------------------------------------------------------------------------------- /hawkbot/plugins/gridstorage/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gridstorage/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/gtfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/gtfo/gtfo_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gtfo/gtfo_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/gtfo/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/gtfo/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/hedge_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/hedge_plugin/__init__.py -------------------------------------------------------------------------------- /hawkbot/plugins/hedge_plugin/hedge_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/hedge_plugin/hedge_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/hedge_plugin/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/hedge_plugin/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/income_trigger_plugin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/income_trigger_plugin/income_trigger_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/income_trigger_plugin/income_trigger_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/income_trigger_plugin/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/income_trigger_plugin/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/log_reporter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/log_reporter/log_reporter_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/log_reporter/log_reporter_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/log_reporter/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/log_reporter/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/multi_autoreduce_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/multi_autoreduce_plugin/__init__.py -------------------------------------------------------------------------------- /hawkbot/plugins/multi_autoreduce_plugin/multi_autoreduce_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/multi_autoreduce_plugin/multi_autoreduce_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/multi_autoreduce_plugin/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/multi_autoreduce_plugin/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/ob_tp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/ob_tp/ob_tp_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/ob_tp/ob_tp_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/ob_tp/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/ob_tp/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/orderbook_sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/orderbook_sr/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/orderbook_sr/data_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/orderbook_sr/orderbook_sr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/orderbook_sr/orderbook_sr.py -------------------------------------------------------------------------------- /hawkbot/plugins/orderbook_sr/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/orderbook_sr/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/plugin_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/plugin_example.py -------------------------------------------------------------------------------- /hawkbot/plugins/plugin_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/plugin_template.py -------------------------------------------------------------------------------- /hawkbot/plugins/profit_transfer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/profit_transfer/orm_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/profit_transfer/orm_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/profit_transfer/profit_transfer_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/profit_transfer/profit_transfer_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/profit_transfer/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/profit_transfer/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/rest_flask_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/rest_flask_app.py -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/rest_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/rest_server.py -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/_redirects -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/asset-manifest.json -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/favicon/favicon.ico -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/fonts/CircularStd-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/fonts/CircularStd-Bold.otf -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/fonts/CircularStd-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/fonts/CircularStd-Book.otf -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/fonts/CircularStd-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/fonts/CircularStd-Medium.otf -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/fonts/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/fonts/index.css -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_analytics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_analytics.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_banking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_banking.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_blog.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_booking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_booking.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_calendar.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_cart.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_chat.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_dashboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_dashboard.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_ecommerce.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_ecommerce.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_kanban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_kanban.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_mail.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/icons/ic_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/icons/ic_user.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/index.html -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/logo/BTC_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/logo/BTC_logo.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/logo/logo_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/logo/logo_full.jpg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/logo/logo_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/logo/logo_full.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/logo/logo_single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/logo/logo_single.svg -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/manifest.json -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/robots.txt -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/css/main.54de06ef.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/css/main.54de06ef.css -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/css/main.54de06ef.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/css/main.54de06ef.css.map -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/128.5231f75c.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/128.5231f75c.chunk.js -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/128.5231f75c.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/128.5231f75c.chunk.js.map -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/206.6c46976f.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/206.6c46976f.chunk.js -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/206.6c46976f.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/206.6c46976f.chunk.js.map -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/317.a2869282.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/317.a2869282.chunk.js -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/317.a2869282.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/317.a2869282.chunk.js.map -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/553.36f54be6.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/553.36f54be6.chunk.js -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/553.36f54be6.chunk.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/553.36f54be6.chunk.js.LICENSE.txt -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/553.36f54be6.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/553.36f54be6.chunk.js.map -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/678.65a762ac.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/678.65a762ac.chunk.js -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/678.65a762ac.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/678.65a762ac.chunk.js.map -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/main.2987b3fe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/main.2987b3fe.js -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/main.2987b3fe.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/main.2987b3fe.js.LICENSE.txt -------------------------------------------------------------------------------- /hawkbot/plugins/rest_server/web/static/js/main.2987b3fe.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/rest_server/web/static/js/main.2987b3fe.js.map -------------------------------------------------------------------------------- /hawkbot/plugins/scorestore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/scorestore/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/scorestore/data_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/scorestore/orm_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/scorestore/orm_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/scorestore/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/scorestore/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/scorestore/score_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/scorestore/score_repository.py -------------------------------------------------------------------------------- /hawkbot/plugins/scorestore/score_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/scorestore/score_store.py -------------------------------------------------------------------------------- /hawkbot/plugins/stoploss/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/stoploss/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/stoploss/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/stoploss/stoploss_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/stoploss/stoploss_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/stoplosses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/stoplosses/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/stoplosses/data_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/stoplosses/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/stoplosses/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/stoplosses/stoplosses_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/stoplosses/stoplosses_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/timeframe_sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/timeframe_sr/data_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/timeframe_sr/data_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/timeframe_sr/orm_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/timeframe_sr/orm_classes.py -------------------------------------------------------------------------------- /hawkbot/plugins/timeframe_sr/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/timeframe_sr/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/timeframe_sr/timeframe_sr_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/timeframe_sr/timeframe_sr_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/timeframe_sr/timeframe_sr_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/timeframe_sr/timeframe_sr_repository.py -------------------------------------------------------------------------------- /hawkbot/plugins/tp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/tp/__init__.py -------------------------------------------------------------------------------- /hawkbot/plugins/tp/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/tp/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/tp/tp_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/tp/tp_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/tp_refill/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/tp_refill/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/tp_refill/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/tp_refill/tp_refill_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/tp_refill/tp_refill_plugin.py -------------------------------------------------------------------------------- /hawkbot/plugins/wiggle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/plugins/wiggle/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/wiggle/proxy.py -------------------------------------------------------------------------------- /hawkbot/plugins/wiggle/wiggle_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/plugins/wiggle/wiggle_plugin.py -------------------------------------------------------------------------------- /hawkbot/redis_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/redis_utils.py -------------------------------------------------------------------------------- /hawkbot/strategies/BasicLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/BasicLongStrategy/basiclongstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BasicLongStrategy/basiclongstrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/BasicLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BasicLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/BasicShortStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/BasicShortStrategy/basicshortstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BasicShortStrategy/basicshortstrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/BasicShortStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BasicShortStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/BigLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/BigLongStrategy/biglongstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BigLongStrategy/biglongstrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/BigLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BigLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/BigShortStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/BigShortStrategy/bigshortstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BigShortStrategy/bigshortstrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/BigShortStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/BigShortStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/CatcherEquilibriumLongStrategy/CatcherEquilibriumLongStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/CatcherEquilibriumLongStrategy/CatcherEquilibriumLongStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/CatcherEquilibriumLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/CatcherEquilibriumLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/CatcherEquilibriumLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/CatcherEquilibriumShortStrategy/CatcherEquilibriumShortStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/CatcherEquilibriumShortStrategy/CatcherEquilibriumShortStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/CatcherEquilibriumShortStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/CatcherEquilibriumShortStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/CatcherEquilibriumShortStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherEquilibriumLongStrategy/DynamicCatcherEquilibriumLongStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherEquilibriumLongStrategy/DynamicCatcherEquilibriumLongStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherEquilibriumLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherEquilibriumLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherEquilibriumLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherEquilibriumShortStrategy/DynamicCatcherEquilibriumShortStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherEquilibriumShortStrategy/DynamicCatcherEquilibriumShortStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherEquilibriumShortStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherEquilibriumShortStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherEquilibriumShortStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherLongStrategy/DynamicCatcherLongStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherLongStrategy/DynamicCatcherLongStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherShortStrategy/DynamicCatcherShortStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherShortStrategy/DynamicCatcherShortStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherShortStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicCatcherShortStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicCatcherShortStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicFastCatcherLongStrategy/DynamicFastCatcherLongStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicFastCatcherLongStrategy/DynamicFastCatcherLongStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicFastCatcherLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/DynamicFastCatcherLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/DynamicFastCatcherLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/EmaFlipLongStrategy/EmaFlipLongStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/EmaFlipLongStrategy/EmaFlipLongStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/EmaFlipLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/EmaFlipLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/EmaFlipLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/EmaFlipShortStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/FastCatcherLongStrategy/FastCatcherLongStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/FastCatcherLongStrategy/FastCatcherLongStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/FastCatcherLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/FastCatcherLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/FastCatcherLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/ManualHedgedWiggleStrategy/ManualHedgedWiggleStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/ManualHedgedWiggleStrategy/ManualHedgedWiggleStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/ManualHedgedWiggleStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/ManualHedgedWiggleStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/ManualHedgedWiggleStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/ManualScalpLongStrategy/ManualScalpLongStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/ManualScalpLongStrategy/ManualScalpLongStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/ManualScalpLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/ManualScalpLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/ManualScalpLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/ManualScalpShortStrategy/ManualScalpShortStrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/ManualScalpShortStrategy/ManualScalpShortStrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/ManualScalpShortStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/ManualScalpShortStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/ManualScalpShortStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/MultiPositionLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/MultiPositionLongStrategy/multipositionlongstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/MultiPositionLongStrategy/multipositionlongstrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/MultiPositionLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/MultiPositionLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/NewMultiPositionLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/NewMultiPositionLongStrategy/newmultipositionlongstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/NewMultiPositionLongStrategy/newmultipositionlongstrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/NewMultiPositionLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/NewMultiPositionLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/TrailingEntryLongStrategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/TrailingEntryLongStrategy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/TrailingEntryLongStrategy/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/TrailingEntryLongStrategy/trailingentrylongstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/TrailingEntryLongStrategy/trailingentrylongstrategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hawkbot/strategies/abstract_base_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/abstract_base_strategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/proxy.py -------------------------------------------------------------------------------- /hawkbot/strategies/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/strategy.py -------------------------------------------------------------------------------- /hawkbot/strategies/strategy_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/strategies/strategy_template.py -------------------------------------------------------------------------------- /hawkbot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot/utils.py -------------------------------------------------------------------------------- /hawkbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_logo.png -------------------------------------------------------------------------------- /hawkbot_rt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/__init__.py -------------------------------------------------------------------------------- /hawkbot_rt/py310/darwin_x86_64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py310/darwin_x86_64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py310/linux_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py310/linux_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py310/linux_x86_64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py310/linux_x86_64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py310/windows_x86_64/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py310/windows_x86_64/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /hawkbot_rt/py311/darwin_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py311/darwin_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py311/linux_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py311/linux_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py311/linux_x86_64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py311/linux_x86_64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py311/windows_x86_64/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py311/windows_x86_64/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /hawkbot_rt/py312/darwin_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py312/darwin_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py312/linux_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py312/linux_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py312/linux_x86_64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py312/linux_x86_64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py312/windows_x86_64/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py312/windows_x86_64/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /hawkbot_rt/py38/darwin_x86_64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py38/darwin_x86_64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py38/linux_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py38/linux_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py38/linux_x86_64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py38/linux_x86_64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py38/windows_x86_64/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py38/windows_x86_64/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /hawkbot_rt/py39/darwin_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py39/darwin_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py39/linux_aarch64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py39/linux_aarch64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py39/linux_x86_64/pyarmor_runtime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py39/linux_x86_64/pyarmor_runtime.so -------------------------------------------------------------------------------- /hawkbot_rt/py39/windows_x86_64/pyarmor_runtime.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/hawkbot_rt/py39/windows_x86_64/pyarmor_runtime.pyd -------------------------------------------------------------------------------- /logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/logging.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/404.html -------------------------------------------------------------------------------- /site/advanced/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/advanced/index.html -------------------------------------------------------------------------------- /site/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/architecture.drawio -------------------------------------------------------------------------------- /site/architecture_2.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/architecture_2.drawio -------------------------------------------------------------------------------- /site/assets/_mkdocstrings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/_mkdocstrings.css -------------------------------------------------------------------------------- /site/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/images/favicon.png -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.ar.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.da.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.de.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.du.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.du.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.el.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.el.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.es.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.fi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.fr.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.he.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.he.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.hi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.hu.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.hy.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.hy.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.it.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.ja.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.kn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.kn.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.ko.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.multi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.multi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.nl.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.no.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.pt.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.ro.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.ru.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.sa.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.sa.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.sv.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.ta.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.ta.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.te.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.te.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.th.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.tr.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.vi.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/min/lunr.zh.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/tinyseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/tinyseg.js -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/wordcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/lunr/wordcut.js -------------------------------------------------------------------------------- /site/assets/javascripts/workers/search.b8dbb3d2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/workers/search.b8dbb3d2.min.js -------------------------------------------------------------------------------- /site/assets/javascripts/workers/search.b8dbb3d2.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/javascripts/workers/search.b8dbb3d2.min.js.map -------------------------------------------------------------------------------- /site/assets/stylesheets/palette.06af60db.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/stylesheets/palette.06af60db.min.css -------------------------------------------------------------------------------- /site/assets/stylesheets/palette.06af60db.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/assets/stylesheets/palette.06af60db.min.css.map -------------------------------------------------------------------------------- /site/backtest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/backtest/index.html -------------------------------------------------------------------------------- /site/example_configs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/example_configs/index.html -------------------------------------------------------------------------------- /site/exchanges/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/exchanges/index.html -------------------------------------------------------------------------------- /site/framework/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/framework/index.html -------------------------------------------------------------------------------- /site/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/favicon.ico -------------------------------------------------------------------------------- /site/img/hawkbot_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_iphone.png -------------------------------------------------------------------------------- /site/img/hawkbot_iphone2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_iphone2x.png -------------------------------------------------------------------------------- /site/img/hawkbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_logo.png -------------------------------------------------------------------------------- /site/img/hawkbot_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_logo.svg -------------------------------------------------------------------------------- /site/img/hawkbot_logo_500x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_logo_500x500.png -------------------------------------------------------------------------------- /site/img/hawkbot_logo_500x500_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_logo_500x500_space.png -------------------------------------------------------------------------------- /site/img/hawkbot_macbookpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_macbookpro.png -------------------------------------------------------------------------------- /site/img/hawkbot_macbookpro2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_macbookpro2x.png -------------------------------------------------------------------------------- /site/img/hawkbot_solo_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_solo_iphone.png -------------------------------------------------------------------------------- /site/img/hawkbot_solo_iphone2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_solo_iphone2x.png -------------------------------------------------------------------------------- /site/img/hawkbot_solo_macbookpro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_solo_macbookpro.png -------------------------------------------------------------------------------- /site/img/hawkbot_solo_macbookpro2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_solo_macbookpro2x.png -------------------------------------------------------------------------------- /site/img/hawkbot_solo_ultrawide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_solo_ultrawide.png -------------------------------------------------------------------------------- /site/img/hawkbot_ultrawide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/hawkbot_ultrawide.png -------------------------------------------------------------------------------- /site/img/terminal_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/terminal_screenshot.png -------------------------------------------------------------------------------- /site/img/web_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/img/web_screenshot.jpg -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/index.html -------------------------------------------------------------------------------- /site/installation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/installation/index.html -------------------------------------------------------------------------------- /site/modes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/modes/index.html -------------------------------------------------------------------------------- /site/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/objects.inv -------------------------------------------------------------------------------- /site/plugins/dca_plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/plugins/dca_plugin/index.html -------------------------------------------------------------------------------- /site/plugins/hedge_plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/plugins/hedge_plugin/index.html -------------------------------------------------------------------------------- /site/plugins/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/plugins/index.html -------------------------------------------------------------------------------- /site/plugins/multi_autoreduce_plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/plugins/multi_autoreduce_plugin/index.html -------------------------------------------------------------------------------- /site/plugins/tp_plugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/plugins/tp_plugin/index.html -------------------------------------------------------------------------------- /site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/sitemap.xml -------------------------------------------------------------------------------- /site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/sitemap.xml.gz -------------------------------------------------------------------------------- /site/strategies/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/strategies/index.html -------------------------------------------------------------------------------- /site/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/site/ui/index.html -------------------------------------------------------------------------------- /trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/trade.py -------------------------------------------------------------------------------- /user_data/account.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/account.example.json -------------------------------------------------------------------------------- /user_data/config-samples/config.example.advanced.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config.example.advanced.1.json -------------------------------------------------------------------------------- /user_data/config-samples/config.example.advanced.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config.example.advanced.2.json -------------------------------------------------------------------------------- /user_data/config-samples/config.example.basic.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config.example.basic.1.json -------------------------------------------------------------------------------- /user_data/config-samples/config.example.basic.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config.example.basic.2.json -------------------------------------------------------------------------------- /user_data/config-samples/config.example.basic.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config.example.basic.3.json -------------------------------------------------------------------------------- /user_data/config-samples/config.fixed_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config.fixed_range.json -------------------------------------------------------------------------------- /user_data/config-samples/config_hardhedge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config_hardhedge.json -------------------------------------------------------------------------------- /user_data/config-samples/config_tight_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config-samples/config_tight_grid.json -------------------------------------------------------------------------------- /user_data/config.all-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config.all-parameters.json -------------------------------------------------------------------------------- /user_data/config_blank.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HawkeyeBot/hawkbot/HEAD/user_data/config_blank.json --------------------------------------------------------------------------------