├── .coveragerc ├── .dependabot └── config.yml ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .pylintrc ├── .readthedocs.yml ├── .travis.yml ├── AI-Scalpel-Trading-Bot ├── LICENSE └── README.md ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.develop ├── Dockerfile.pi ├── Dockerfile.technical ├── LICENSE ├── MANIFEST.in ├── README.md ├── bin └── freqtrade ├── config.json.example ├── config_binance.json.example ├── config_full.json.example ├── config_kraken.json.example ├── docs ├── assets │ ├── freqtrade-screenshot.png │ ├── plot-dataframe.png │ └── plot-profit.png ├── backtesting.md ├── bot-usage.md ├── configuration.md ├── data-analysis.md ├── deprecated.md ├── developer.md ├── docker.md ├── edge.md ├── faq.md ├── hyperopt.md ├── images │ └── logo.png ├── index.md ├── installation.md ├── partials │ └── header.html ├── plotting.md ├── requirements-docs.txt ├── rest-api.md ├── sandbox-testing.md ├── sql_cheatsheet.md ├── stoploss.md ├── strategy-customization.md ├── telegram-usage.md └── webhook-config.md ├── environment.yml ├── freqtrade.service ├── freqtrade.service.watchdog ├── freqtrade ├── __init__.py ├── __main__.py ├── configuration │ ├── __init__.py │ ├── arguments.py │ ├── check_exchange.py │ ├── cli_options.py │ ├── config_validation.py │ ├── configuration.py │ ├── directory_operations.py │ ├── load_config.py │ └── timerange.py ├── constants.py ├── data │ ├── __init__.py │ ├── btanalysis.py │ ├── converter.py │ ├── dataprovider.py │ └── history.py ├── edge │ └── __init__.py ├── exchange │ ├── __init__.py │ ├── binance.py │ ├── exchange.py │ └── kraken.py ├── freqtradebot.py ├── indicator_helpers.py ├── loggers.py ├── main.py ├── misc.py ├── optimize │ ├── __init__.py │ ├── backtesting.py │ ├── default_hyperopt.py │ ├── default_hyperopt_loss.py │ ├── edge_cli.py │ ├── hyperopt.py │ ├── hyperopt_interface.py │ ├── hyperopt_loss_interface.py │ ├── hyperopt_loss_onlyprofit.py │ └── hyperopt_loss_sharpe.py ├── pairlist │ ├── IPairList.py │ ├── StaticPairList.py │ ├── VolumePairList.py │ └── __init__.py ├── persistence.py ├── plot │ ├── __init__.py │ ├── plot_utils.py │ └── plotting.py ├── resolvers │ ├── __init__.py │ ├── exchange_resolver.py │ ├── hyperopt_resolver.py │ ├── iresolver.py │ ├── pairlist_resolver.py │ └── strategy_resolver.py ├── rpc │ ├── __init__.py │ ├── api_server.py │ ├── fiat_convert.py │ ├── rpc.py │ ├── rpc_manager.py │ ├── telegram.py │ └── webhook.py ├── state.py ├── strategy │ ├── __init__.py │ ├── default_strategy.py │ └── interface.py ├── tests │ ├── __init__.py │ ├── config_test_comments.json │ ├── conftest.py │ ├── data │ │ ├── __init__.py │ │ ├── test_btanalysis.py │ │ ├── test_converter.py │ │ ├── test_dataprovider.py │ │ └── test_history.py │ ├── edge │ │ ├── __init__.py │ │ └── test_edge.py │ ├── exchange │ │ ├── __init__.py │ │ ├── test_binance.py │ │ ├── test_exchange.py │ │ └── test_kraken.py │ ├── optimize │ │ ├── __init__.py │ │ ├── test_backtest_detail.py │ │ ├── test_backtesting.py │ │ ├── test_edge_cli.py │ │ └── test_hyperopt.py │ ├── pairlist │ │ ├── __init__.py │ │ └── test_pairlist.py │ ├── rpc │ │ ├── __init__.py │ │ ├── test_fiat_convert.py │ │ ├── test_rpc.py │ │ ├── test_rpc_apiserver.py │ │ ├── test_rpc_manager.py │ │ ├── test_rpc_telegram.py │ │ └── test_rpc_webhook.py │ ├── strategy │ │ ├── __init__.py │ │ ├── legacy_strategy.py │ │ ├── test_default_strategy.py │ │ ├── test_interface.py │ │ └── test_strategy.py │ ├── test_arguments.py │ ├── test_configuration.py │ ├── test_freqtradebot.py │ ├── test_indicator_helpers.py │ ├── test_main.py │ ├── test_misc.py │ ├── test_persistence.py │ ├── test_plotting.py │ ├── test_talib.py │ ├── test_timerange.py │ ├── test_utils.py │ ├── test_wallets.py │ └── testdata │ │ ├── ADA_BTC-1m.json │ │ ├── ADA_BTC-5m.json │ │ ├── DASH_BTC-1m.json │ │ ├── DASH_BTC-5m.json │ │ ├── ETC_BTC-1m.json │ │ ├── ETC_BTC-5m.json │ │ ├── ETH_BTC-1m.json │ │ ├── ETH_BTC-5m.json │ │ ├── LTC_BTC-1m.json │ │ ├── LTC_BTC-5m.json │ │ ├── NXT_BTC-1m.json │ │ ├── NXT_BTC-5m.json │ │ ├── POWR_BTC-1m.json │ │ ├── POWR_BTC-5m.json │ │ ├── UNITTEST_BTC-1m.json │ │ ├── UNITTEST_BTC-30m.json │ │ ├── UNITTEST_BTC-5m.json │ │ ├── UNITTEST_BTC-8m.json │ │ ├── UNITTEST_BTC-8m.json.gz │ │ ├── XLM_BTC-1m.json │ │ ├── XLM_BTC-5m.json │ │ ├── XMR_BTC-1m.json │ │ ├── XMR_BTC-5m.json │ │ ├── ZEC_BTC-1m.json │ │ ├── ZEC_BTC-5m.json │ │ ├── backtest-result_test.json │ │ └── pairs.json ├── utils.py ├── vendor │ ├── __init__.py │ └── qtpylib │ │ ├── __init__.py │ │ └── indicators.py ├── wallets.py └── worker.py ├── mkdocs.yml ├── requirements-common.txt ├── requirements-dev.txt ├── requirements-plot.txt ├── requirements.txt ├── scripts ├── download_backtest_data.py ├── get_market_pairs.py ├── plot_dataframe.py ├── plot_profit.py └── rest_client.py ├── setup.cfg ├── setup.py ├── setup.sh └── user_data ├── backtest_data └── .gitkeep ├── backtest_results └── .gitkeep ├── data └── .gitkeep ├── hyperopts ├── __init__.py ├── sample_hyperopt.py ├── sample_hyperopt_advanced.py └── sample_hyperopt_loss.py ├── notebooks ├── .gitkeep └── strategy_analysis_example.ipynb └── strategies ├── __init__.py └── sample_strategy.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/.travis.yml -------------------------------------------------------------------------------- /AI-Scalpel-Trading-Bot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/AI-Scalpel-Trading-Bot/LICENSE -------------------------------------------------------------------------------- /AI-Scalpel-Trading-Bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/AI-Scalpel-Trading-Bot/README.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/Dockerfile.develop -------------------------------------------------------------------------------- /Dockerfile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/Dockerfile.pi -------------------------------------------------------------------------------- /Dockerfile.technical: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/Dockerfile.technical -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/README.md -------------------------------------------------------------------------------- /bin/freqtrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/bin/freqtrade -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/config.json.example -------------------------------------------------------------------------------- /config_binance.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/config_binance.json.example -------------------------------------------------------------------------------- /config_full.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/config_full.json.example -------------------------------------------------------------------------------- /config_kraken.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/config_kraken.json.example -------------------------------------------------------------------------------- /docs/assets/freqtrade-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/assets/freqtrade-screenshot.png -------------------------------------------------------------------------------- /docs/assets/plot-dataframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/assets/plot-dataframe.png -------------------------------------------------------------------------------- /docs/assets/plot-profit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/assets/plot-profit.png -------------------------------------------------------------------------------- /docs/backtesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/backtesting.md -------------------------------------------------------------------------------- /docs/bot-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/bot-usage.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/data-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/data-analysis.md -------------------------------------------------------------------------------- /docs/deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/deprecated.md -------------------------------------------------------------------------------- /docs/developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/developer.md -------------------------------------------------------------------------------- /docs/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/docker.md -------------------------------------------------------------------------------- /docs/edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/edge.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/hyperopt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/hyperopt.md -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/partials/header.html -------------------------------------------------------------------------------- /docs/plotting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/plotting.md -------------------------------------------------------------------------------- /docs/requirements-docs.txt: -------------------------------------------------------------------------------- 1 | mkdocs-material==4.4.2 -------------------------------------------------------------------------------- /docs/rest-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/rest-api.md -------------------------------------------------------------------------------- /docs/sandbox-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/sandbox-testing.md -------------------------------------------------------------------------------- /docs/sql_cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/sql_cheatsheet.md -------------------------------------------------------------------------------- /docs/stoploss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/stoploss.md -------------------------------------------------------------------------------- /docs/strategy-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/strategy-customization.md -------------------------------------------------------------------------------- /docs/telegram-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/telegram-usage.md -------------------------------------------------------------------------------- /docs/webhook-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/docs/webhook-config.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/environment.yml -------------------------------------------------------------------------------- /freqtrade.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade.service -------------------------------------------------------------------------------- /freqtrade.service.watchdog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade.service.watchdog -------------------------------------------------------------------------------- /freqtrade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/__init__.py -------------------------------------------------------------------------------- /freqtrade/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/__main__.py -------------------------------------------------------------------------------- /freqtrade/configuration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/__init__.py -------------------------------------------------------------------------------- /freqtrade/configuration/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/arguments.py -------------------------------------------------------------------------------- /freqtrade/configuration/check_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/check_exchange.py -------------------------------------------------------------------------------- /freqtrade/configuration/cli_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/cli_options.py -------------------------------------------------------------------------------- /freqtrade/configuration/config_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/config_validation.py -------------------------------------------------------------------------------- /freqtrade/configuration/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/configuration.py -------------------------------------------------------------------------------- /freqtrade/configuration/directory_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/directory_operations.py -------------------------------------------------------------------------------- /freqtrade/configuration/load_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/load_config.py -------------------------------------------------------------------------------- /freqtrade/configuration/timerange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/configuration/timerange.py -------------------------------------------------------------------------------- /freqtrade/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/constants.py -------------------------------------------------------------------------------- /freqtrade/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/data/__init__.py -------------------------------------------------------------------------------- /freqtrade/data/btanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/data/btanalysis.py -------------------------------------------------------------------------------- /freqtrade/data/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/data/converter.py -------------------------------------------------------------------------------- /freqtrade/data/dataprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/data/dataprovider.py -------------------------------------------------------------------------------- /freqtrade/data/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/data/history.py -------------------------------------------------------------------------------- /freqtrade/edge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/edge/__init__.py -------------------------------------------------------------------------------- /freqtrade/exchange/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/exchange/__init__.py -------------------------------------------------------------------------------- /freqtrade/exchange/binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/exchange/binance.py -------------------------------------------------------------------------------- /freqtrade/exchange/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/exchange/exchange.py -------------------------------------------------------------------------------- /freqtrade/exchange/kraken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/exchange/kraken.py -------------------------------------------------------------------------------- /freqtrade/freqtradebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/freqtradebot.py -------------------------------------------------------------------------------- /freqtrade/indicator_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/indicator_helpers.py -------------------------------------------------------------------------------- /freqtrade/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/loggers.py -------------------------------------------------------------------------------- /freqtrade/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/main.py -------------------------------------------------------------------------------- /freqtrade/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/misc.py -------------------------------------------------------------------------------- /freqtrade/optimize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/__init__.py -------------------------------------------------------------------------------- /freqtrade/optimize/backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/backtesting.py -------------------------------------------------------------------------------- /freqtrade/optimize/default_hyperopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/default_hyperopt.py -------------------------------------------------------------------------------- /freqtrade/optimize/default_hyperopt_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/default_hyperopt_loss.py -------------------------------------------------------------------------------- /freqtrade/optimize/edge_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/edge_cli.py -------------------------------------------------------------------------------- /freqtrade/optimize/hyperopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/hyperopt.py -------------------------------------------------------------------------------- /freqtrade/optimize/hyperopt_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/hyperopt_interface.py -------------------------------------------------------------------------------- /freqtrade/optimize/hyperopt_loss_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/hyperopt_loss_interface.py -------------------------------------------------------------------------------- /freqtrade/optimize/hyperopt_loss_onlyprofit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/hyperopt_loss_onlyprofit.py -------------------------------------------------------------------------------- /freqtrade/optimize/hyperopt_loss_sharpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/optimize/hyperopt_loss_sharpe.py -------------------------------------------------------------------------------- /freqtrade/pairlist/IPairList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/pairlist/IPairList.py -------------------------------------------------------------------------------- /freqtrade/pairlist/StaticPairList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/pairlist/StaticPairList.py -------------------------------------------------------------------------------- /freqtrade/pairlist/VolumePairList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/pairlist/VolumePairList.py -------------------------------------------------------------------------------- /freqtrade/pairlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/persistence.py -------------------------------------------------------------------------------- /freqtrade/plot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/plot/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/plot/plot_utils.py -------------------------------------------------------------------------------- /freqtrade/plot/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/plot/plotting.py -------------------------------------------------------------------------------- /freqtrade/resolvers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/resolvers/__init__.py -------------------------------------------------------------------------------- /freqtrade/resolvers/exchange_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/resolvers/exchange_resolver.py -------------------------------------------------------------------------------- /freqtrade/resolvers/hyperopt_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/resolvers/hyperopt_resolver.py -------------------------------------------------------------------------------- /freqtrade/resolvers/iresolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/resolvers/iresolver.py -------------------------------------------------------------------------------- /freqtrade/resolvers/pairlist_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/resolvers/pairlist_resolver.py -------------------------------------------------------------------------------- /freqtrade/resolvers/strategy_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/resolvers/strategy_resolver.py -------------------------------------------------------------------------------- /freqtrade/rpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/rpc/__init__.py -------------------------------------------------------------------------------- /freqtrade/rpc/api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/rpc/api_server.py -------------------------------------------------------------------------------- /freqtrade/rpc/fiat_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/rpc/fiat_convert.py -------------------------------------------------------------------------------- /freqtrade/rpc/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/rpc/rpc.py -------------------------------------------------------------------------------- /freqtrade/rpc/rpc_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/rpc/rpc_manager.py -------------------------------------------------------------------------------- /freqtrade/rpc/telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/rpc/telegram.py -------------------------------------------------------------------------------- /freqtrade/rpc/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/rpc/webhook.py -------------------------------------------------------------------------------- /freqtrade/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/state.py -------------------------------------------------------------------------------- /freqtrade/strategy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/strategy/__init__.py -------------------------------------------------------------------------------- /freqtrade/strategy/default_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/strategy/default_strategy.py -------------------------------------------------------------------------------- /freqtrade/strategy/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/strategy/interface.py -------------------------------------------------------------------------------- /freqtrade/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/config_test_comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/config_test_comments.json -------------------------------------------------------------------------------- /freqtrade/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/conftest.py -------------------------------------------------------------------------------- /freqtrade/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/data/test_btanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/data/test_btanalysis.py -------------------------------------------------------------------------------- /freqtrade/tests/data/test_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/data/test_converter.py -------------------------------------------------------------------------------- /freqtrade/tests/data/test_dataprovider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/data/test_dataprovider.py -------------------------------------------------------------------------------- /freqtrade/tests/data/test_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/data/test_history.py -------------------------------------------------------------------------------- /freqtrade/tests/edge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/edge/test_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/edge/test_edge.py -------------------------------------------------------------------------------- /freqtrade/tests/exchange/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/exchange/test_binance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/exchange/test_binance.py -------------------------------------------------------------------------------- /freqtrade/tests/exchange/test_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/exchange/test_exchange.py -------------------------------------------------------------------------------- /freqtrade/tests/exchange/test_kraken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/exchange/test_kraken.py -------------------------------------------------------------------------------- /freqtrade/tests/optimize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/optimize/__init__.py -------------------------------------------------------------------------------- /freqtrade/tests/optimize/test_backtest_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/optimize/test_backtest_detail.py -------------------------------------------------------------------------------- /freqtrade/tests/optimize/test_backtesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/optimize/test_backtesting.py -------------------------------------------------------------------------------- /freqtrade/tests/optimize/test_edge_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/optimize/test_edge_cli.py -------------------------------------------------------------------------------- /freqtrade/tests/optimize/test_hyperopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/optimize/test_hyperopt.py -------------------------------------------------------------------------------- /freqtrade/tests/pairlist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/pairlist/test_pairlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/pairlist/test_pairlist.py -------------------------------------------------------------------------------- /freqtrade/tests/rpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/rpc/test_fiat_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/rpc/test_fiat_convert.py -------------------------------------------------------------------------------- /freqtrade/tests/rpc/test_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/rpc/test_rpc.py -------------------------------------------------------------------------------- /freqtrade/tests/rpc/test_rpc_apiserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/rpc/test_rpc_apiserver.py -------------------------------------------------------------------------------- /freqtrade/tests/rpc/test_rpc_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/rpc/test_rpc_manager.py -------------------------------------------------------------------------------- /freqtrade/tests/rpc/test_rpc_telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/rpc/test_rpc_telegram.py -------------------------------------------------------------------------------- /freqtrade/tests/rpc/test_rpc_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/rpc/test_rpc_webhook.py -------------------------------------------------------------------------------- /freqtrade/tests/strategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/strategy/legacy_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/strategy/legacy_strategy.py -------------------------------------------------------------------------------- /freqtrade/tests/strategy/test_default_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/strategy/test_default_strategy.py -------------------------------------------------------------------------------- /freqtrade/tests/strategy/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/strategy/test_interface.py -------------------------------------------------------------------------------- /freqtrade/tests/strategy/test_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/strategy/test_strategy.py -------------------------------------------------------------------------------- /freqtrade/tests/test_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_arguments.py -------------------------------------------------------------------------------- /freqtrade/tests/test_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_configuration.py -------------------------------------------------------------------------------- /freqtrade/tests/test_freqtradebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_freqtradebot.py -------------------------------------------------------------------------------- /freqtrade/tests/test_indicator_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_indicator_helpers.py -------------------------------------------------------------------------------- /freqtrade/tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_main.py -------------------------------------------------------------------------------- /freqtrade/tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_misc.py -------------------------------------------------------------------------------- /freqtrade/tests/test_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_persistence.py -------------------------------------------------------------------------------- /freqtrade/tests/test_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_plotting.py -------------------------------------------------------------------------------- /freqtrade/tests/test_talib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_talib.py -------------------------------------------------------------------------------- /freqtrade/tests/test_timerange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_timerange.py -------------------------------------------------------------------------------- /freqtrade/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_utils.py -------------------------------------------------------------------------------- /freqtrade/tests/test_wallets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/test_wallets.py -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ADA_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ADA_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ADA_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ADA_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/DASH_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/DASH_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/DASH_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/DASH_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ETC_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ETC_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ETC_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ETC_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ETH_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ETH_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ETH_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ETH_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/LTC_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/LTC_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/LTC_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/LTC_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/NXT_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/NXT_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/NXT_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/NXT_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/POWR_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/POWR_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/POWR_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/POWR_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/UNITTEST_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/UNITTEST_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/UNITTEST_BTC-30m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/UNITTEST_BTC-30m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/UNITTEST_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/UNITTEST_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/UNITTEST_BTC-8m.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/tests/testdata/UNITTEST_BTC-8m.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/UNITTEST_BTC-8m.json.gz -------------------------------------------------------------------------------- /freqtrade/tests/testdata/XLM_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/XLM_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/XLM_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/XLM_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/XMR_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/XMR_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/XMR_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/XMR_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ZEC_BTC-1m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ZEC_BTC-1m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/ZEC_BTC-5m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/ZEC_BTC-5m.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/backtest-result_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/backtest-result_test.json -------------------------------------------------------------------------------- /freqtrade/tests/testdata/pairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/tests/testdata/pairs.json -------------------------------------------------------------------------------- /freqtrade/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/utils.py -------------------------------------------------------------------------------- /freqtrade/vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/vendor/qtpylib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /freqtrade/vendor/qtpylib/indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/vendor/qtpylib/indicators.py -------------------------------------------------------------------------------- /freqtrade/wallets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/wallets.py -------------------------------------------------------------------------------- /freqtrade/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/freqtrade/worker.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements-common.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/requirements-common.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-plot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/requirements-plot.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/download_backtest_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/scripts/download_backtest_data.py -------------------------------------------------------------------------------- /scripts/get_market_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/scripts/get_market_pairs.py -------------------------------------------------------------------------------- /scripts/plot_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/scripts/plot_dataframe.py -------------------------------------------------------------------------------- /scripts/plot_profit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/scripts/plot_profit.py -------------------------------------------------------------------------------- /scripts/rest_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/scripts/rest_client.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/setup.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/setup.sh -------------------------------------------------------------------------------- /user_data/backtest_data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_data/backtest_results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_data/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_data/hyperopts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_data/hyperopts/sample_hyperopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/user_data/hyperopts/sample_hyperopt.py -------------------------------------------------------------------------------- /user_data/hyperopts/sample_hyperopt_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/user_data/hyperopts/sample_hyperopt_advanced.py -------------------------------------------------------------------------------- /user_data/hyperopts/sample_hyperopt_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/user_data/hyperopts/sample_hyperopt_loss.py -------------------------------------------------------------------------------- /user_data/notebooks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_data/notebooks/strategy_analysis_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/user_data/notebooks/strategy_analysis_example.ipynb -------------------------------------------------------------------------------- /user_data/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /user_data/strategies/sample_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackobi/AI-Scalpel-Trading-Bot/HEAD/user_data/strategies/sample_strategy.py --------------------------------------------------------------------------------