在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Python编写的先进加密交易机器人

Python编写的先进加密交易机器人

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:5.08M
  • 下载次数:4
  • 浏览次数:47
  • 发布时间:2024-06-04
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: python 机器人 py 交易 机器

实例介绍

【实例简介】

Jesse是一个先进的加密货币交易框架,旨在简化研究和定义您自己的交易策略。

【实例截图】
【核心代码】
文件清单
└── jesse-ce799d00866b9c549ef663763516b1d80ca85510
    ├── addNewDriverGuide.md
    ├── assets
    │   ├── jesse-logo.png
    │   └── screenshots
    │       ├── live-mode.jpg
    │       ├── optimize-mode.jpg
    │       ├── quantstats.png
    │       └── strategy.jpg
    ├── codecov.yml
    ├── docker_build_helpers
    │   ├── install_ta-lib.sh
    │   └── ta-lib-0.4.0-src.tar.gz
    ├── Dockerfile
    ├── jesse
    │   ├── config.py
    │   ├── enums
    │   │   └── __init__.py
    │   ├── exceptions
    │   │   └── __init__.py
    │   ├── exchanges
    │   │   ├── exchange.py
    │   │   ├── __init__.py
    │   │   └── sandbox
    │   │       ├── __init__.py
    │   │       └── Sandbox.py
    │   ├── factories
    │   │   ├── candle_factory.py
    │   │   ├── __init__.py
    │   │   └── order_factory.py
    │   ├── helpers.py
    │   ├── indicators
    │   │   ├── acosc.py
    │   │   ├── adosc.py
    │   │   ├── ad.py
    │   │   ├── adx.py
    │   │   ├── adxr.py
    │   │   ├── alligator.py
    │   │   ├── alma.py
    │   │   ├── ao.py
    │   │   ├── apo.py
    │   │   ├── aroonosc.py
    │   │   ├── aroon.py
    │   │   ├── atr.py
    │   │   ├── avgprice.py
    │   │   ├── bandpass.py
    │   │   ├── beta.py
    │   │   ├── bollinger_bands.py
    │   │   ├── bollinger_bands_width.py
    │   │   ├── bop.py
    │   │   ├── cci.py
    │   │   ├── cc.py
    │   │   ├── cfo.py
    │   │   ├── cg.py
    │   │   ├── chande.py
    │   │   ├── chop.py
    │   │   ├── cksp.py
    │   │   ├── cmo.py
    │   │   ├── correlation_cycle.py
    │   │   ├── correl.py
    │   │   ├── cvi.py
    │   │   ├── cwma.py
    │   │   ├── damiani_volatmeter.py
    │   │   ├── dec_osc.py
    │   │   ├── decycler.py
    │   │   ├── dema.py
    │   │   ├── devstop.py
    │   │   ├── di.py
    │   │   ├── dm.py
    │   │   ├── donchian.py
    │   │   ├── dpo.py
    │   │   ├── dti.py
    │   │   ├── dx.py
    │   │   ├── edcf.py
    │   │   ├── efi.py
    │   │   ├── ema.py
    │   │   ├── emd.py
    │   │   ├── emv.py
    │   │   ├── epma.py
    │   │   ├── eri.py
    │   │   ├── er.py
    │   │   ├── fisher.py
    │   │   ├── fosc.py
    │   │   ├── frama.py
    │   │   ├── fwma.py
    │   │   ├── gatorosc.py
    │   │   ├── gauss.py
    │   │   ├── heikin_ashi_candles.py
    │   │   ├── high_pass_2_pole.py
    │   │   ├── high_pass.py
    │   │   ├── hma.py
    │   │   ├── ht_dcperiod.py
    │   │   ├── ht_dcphase.py
    │   │   ├── ht_phasor.py
    │   │   ├── ht_sine.py
    │   │   ├── ht_trendline.py
    │   │   ├── ht_trendmode.py
    │   │   ├── hurst_exponent.py
    │   │   ├── hwma.py
    │   │   ├── ichimoku_cloud.py
    │   │   ├── ichimoku_cloud_seq.py
    │   │   ├── ift_rsi.py
    │   │   ├── __init__.py
    │   │   ├── itrend.py
    │   │   ├── jma.py
    │   │   ├── jsa.py
    │   │   ├── kama.py
    │   │   ├── kaufmanstop.py
    │   │   ├── kdj.py
    │   │   ├── keltner.py
    │   │   ├── kst.py
    │   │   ├── kurtosis.py
    │   │   ├── kvo.py
    │   │   ├── linearreg_angle.py
    │   │   ├── linearreg_intercept.py
    │   │   ├── linearreg.py
    │   │   ├── linearreg_slope.py
    │   │   ├── lrsi.py
    │   │   ├── maaq.py
    │   │   ├── mab.py
    │   │   ├── macdext.py
    │   │   ├── macd.py
    │   │   ├── mama.py
    │   │   ├── ma.py
    │   │   ├── marketfi.py
    │   │   ├── mass.py
    │   │   ├── mcginley_dynamic.py
    │   │   ├── mean_ad.py
    │   │   ├── median_ad.py
    │   │   ├── medprice.py
    │   │   ├── mfi.py
    │   │   ├── midpoint.py
    │   │   ├── midprice.py
    │   │   ├── minmax.py
    │   │   ├── mom.py
    │   │   ├── msw.py
    │   │   ├── mwdx.py
    │   │   ├── natr.py
    │   │   ├── nma.py
    │   │   ├── nvi.py
    │   │   ├── obv.py
    │   │   ├── pattern_recognition.py
    │   │   ├── pfe.py
    │   │   ├── pivot.py
    │   │   ├── pma.py
    │   │   ├── ppo.py
    │   │   ├── pvi.py
    │   │   ├── pwma.py
    │   │   ├── qstick.py
    │   │   ├── reflex.py
    │   │   ├── rma.py
    │   │   ├── rocp.py
    │   │   ├── roc.py
    │   │   ├── rocr100.py
    │   │   ├── rocr.py
    │   │   ├── roofing.py
    │   │   ├── rsi.py
    │   │   ├── rsmk.py
    │   │   ├── rsx.py
    │   │   ├── rvi.py
    │   │   ├── safezonestop.py
    │   │   ├── sarext.py
    │   │   ├── sar.py
    │   │   ├── sinwma.py
    │   │   ├── skew.py
    │   │   ├── sma.py
    │   │   ├── smma.py
    │   │   ├── sqwma.py
    │   │   ├── srsi.py
    │   │   ├── srwma.py
    │   │   ├── stc.py
    │   │   ├── stddev.py
    │   │   ├── stochastic.py
    │   │   ├── stochf.py
    │   │   ├── supersmoother_3_pole.py
    │   │   ├── supersmoother.py
    │   │   ├── supertrend.py
    │   │   ├── swma.py
    │   │   ├── t3.py
    │   │   ├── tema.py
    │   │   ├── trange.py
    │   │   ├── trendflex.py
    │   │   ├── trima.py
    │   │   ├── trix.py
    │   │   ├── tsf.py
    │   │   ├── tsi.py
    │   │   ├── ttm_trend.py
    │   │   ├── typprice.py
    │   │   ├── ui.py
    │   │   ├── ultosc.py
    │   │   ├── var.py
    │   │   ├── vidya.py
    │   │   ├── vi.py
    │   │   ├── vlma.py
    │   │   ├── vosc.py
    │   │   ├── voss.py
    │   │   ├── vpci.py
    │   │   ├── vpt.py
    │   │   ├── vpwma.py
    │   │   ├── vwap.py
    │   │   ├── vwmacd.py
    │   │   ├── vwma.py
    │   │   ├── wad.py
    │   │   ├── wclprice.py
    │   │   ├── wilders.py
    │   │   ├── willr.py
    │   │   ├── wma.py
    │   │   ├── wt.py
    │   │   ├── zlema.py
    │   │   └── zscore.py
    │   ├── info.py
    │   ├── __init__.py
    │   ├── libs
    │   │   ├── custom_json
    │   │   │   └── __init__.py
    │   │   ├── dynamic_numpy_array
    │   │   │   └── __init__.py
    │   │   └── __init__.py
    │   ├── models
    │   │   ├── Candle.py
    │   │   ├── ClosedTrade.py
    │   │   ├── DailyBalance.py
    │   │   ├── Exchange.py
    │   │   ├── FuturesExchange.py
    │   │   ├── __init__.py
    │   │   ├── Log.py
    │   │   ├── Option.py
    │   │   ├── Orderbook.py
    │   │   ├── Order.py
    │   │   ├── Position.py
    │   │   ├── Route.py
    │   │   ├── SpotExchange.py
    │   │   ├── Ticker.py
    │   │   ├── Trade.py
    │   │   └── utils.py
    │   ├── modes
    │   │   ├── backtest_mode.py
    │   │   ├── data_provider.py
    │   │   ├── import_candles_mode
    │   │   │   ├── drivers
    │   │   │   │   ├── Binance
    │   │   │   │   │   ├── BinanceMain.py
    │   │   │   │   │   ├── BinancePerpetualFutures.py
    │   │   │   │   │   ├── BinancePerpetualFuturesTestnet.py
    │   │   │   │   │   ├── BinanceSpot.py
    │   │   │   │   │   ├── BinanceUSSpot.py
    │   │   │   │   │   ├── binance_utils.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── Bitfinex
    │   │   │   │   │   ├── BitfinexSpot.py
    │   │   │   │   │   ├── bitfinex_utils.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── Bitget
    │   │   │   │   │   ├── BitgetSpot.py
    │   │   │   │   │   ├── bitget_spot_utils.py
    │   │   │   │   │   ├── BitgetUSDTPerpetualMain.py
    │   │   │   │   │   ├── BitgetUSDTPerpetual.py
    │   │   │   │   │   ├── BitgetUSDTPerpetualTestnet.py
    │   │   │   │   │   ├── bitget_utils.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── Bybit
    │   │   │   │   │   ├── BybitMain.py
    │   │   │   │   │   ├── BybitSpot.py
    │   │   │   │   │   ├── BybitSpotTestnet.py
    │   │   │   │   │   ├── BybitUSDCPerpetual.py
    │   │   │   │   │   ├── BybitUSDCPerpetualTestnet.py
    │   │   │   │   │   ├── BybitUSDTPerpetual.py
    │   │   │   │   │   ├── BybitUSDTPerpetualTestnet.py
    │   │   │   │   │   ├── bybit_utils.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── Coinbase
    │   │   │   │   │   ├── CoinbaseSpot.py
    │   │   │   │   │   ├── coinbase_utils.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── DyDx
    │   │   │   │   │   ├── DydxPerpetualMain.py
    │   │   │   │   │   ├── DydxPerpetual.py
    │   │   │   │   │   ├── DydxPerpetualTestnet.py
    │   │   │   │   │   ├── dydx_utils.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── FTX
    │   │   │   │   │   ├── FTXMain.py
    │   │   │   │   │   ├── FTXPerpetualFutures.py
    │   │   │   │   │   ├── FTXSpot.py
    │   │   │   │   │   ├── FTXUSSpot.py
    │   │   │   │   │   ├── ftx_utils.py
    │   │   │   │   │   └── __init__.py
    │   │   │   │   ├── __init__.py
    │   │   │   │   └── interface.py
    │   │   │   └── __init__.py
    │   │   ├── __init__.py
    │   │   ├── optimize_mode
    │   │   │   ├── fitness.py
    │   │   │   ├── __init__.py
    │   │   │   └── Optimize.py
    │   │   └── utils.py
    │   ├── research
    │   │   ├── backtest.py
    │   │   ├── candles.py
    │   │   ├── import_candles.py
    │   │   └── __init__.py
    │   ├── routes
    │   │   └── __init__.py
    │   ├── services
    │   │   ├── api.py
    │   │   ├── auth.py
    │   │   ├── broker.py
    │   │   ├── cache.py
    │   │   ├── candle.py
    │   │   ├── charts.py
    │   │   ├── db.py
    │   │   ├── env.py
    │   │   ├── failure.py
    │   │   ├── file.py
    │   │   ├── general_info.py
    │   │   ├── __init__.py
    │   │   ├── installer.py
    │   │   ├── jesse_trade.py
    │   │   ├── logger.py
    │   │   ├── metrics.py
    │   │   ├── migrator.py
    │   │   ├── multiprocessing.py
    │   │   ├── notifier.py
    │   │   ├── progressbar.py
    │   │   ├── quantstats.py
    │   │   ├── redis.py
    │   │   ├── report.py
    │   │   ├── required_candles.py
    │   │   ├── selectors.py
    │   │   ├── strategy_maker
    │   │   │   ├── ExampleStrategy
    │   │   │   │   └── __init__.py
    │   │   │   └── __init__.py
    │   │   ├── table.py
    │   │   ├── tradingview.py
    │   │   ├── validators.py
    │   │   └── web.py
    │   ├── static
    │   │   ├── css
    │   │   │   └── app.dbd9e940.css
    │   │   ├── favicon.ico
    │   │   ├── img
    │   │   │   ├── logo-dark.374e6085..svg
    │   │   │   ├── logo-light.20cb902b..png
    │   │   │   └── search-by-algolia-light-background.47401192..svg
    │   │   ├── index.html
    │   │   └── js
    │   │       ├── app.8f82fb58.js
    │   │       ├── app.8f82fb58.js.map
    │   │       ├── chunk-vendors.fd5d04fc.js
    │   │       └── chunk-vendors.fd5d04fc.js.map
    │   ├── store
    │   │   ├── __init__.py
    │   │   ├── state_app.py
    │   │   ├── state_candles.py
    │   │   ├── state_completed_trades.py
    │   │   ├── state_exchanges.py
    │   │   ├── state_logs.py
    │   │   ├── state_orderbook.py
    │   │   ├── state_orders.py
    │   │   ├── state_positions.py
    │   │   ├── state_tickers.py
    │   │   └── state_trades.py
    │   ├── strategies
    │   │   ├── CanAddClosedTradeToStore
    │   │   │   └── __init__.py
    │   │   ├── __init__.py
    │   │   ├── Strategy.py
    │   │   ├── Test01
    │   │   │   └── __init__.py
    │   │   ├── Test02
    │   │   │   └── __init__.py
    │   │   ├── Test04
    │   │   │   └── __init__.py
    │   │   ├── Test05
    │   │   │   └── __init__.py
    │   │   ├── Test06
    │   │   │   └── __init__.py
    │   │   ├── Test07
    │   │   │   └── __init__.py
    │   │   ├── Test08
    │   │   │   └── __init__.py
    │   │   ├── Test09
    │   │   │   └── __init__.py
    │   │   ├── Test10
    │   │   │   └── __init__.py
    │   │   ├── Test11
    │   │   │   └── __init__.py
    │   │   ├── Test12
    │   │   │   └── __init__.py
    │   │   ├── Test13
    │   │   │   └── __init__.py
    │   │   ├── Test14
    │   │   │   └── __init__.py
    │   │   ├── Test15
    │   │   │   └── __init__.py
    │   │   ├── Test16
    │   │   │   └── __init__.py
    │   │   ├── Test17
    │   │   │   └── __init__.py
    │   │   ├── Test18
    │   │   │   └── __init__.py
    │   │   ├── Test19
    │   │   │   └── __init__.py
    │   │   ├── Test20
    │   │   │   └── __init__.py
    │   │   ├── Test21
    │   │   │   └── __init__.py
    │   │   ├── Test22
    │   │   │   └── __init__.py
    │   │   ├── Test23
    │   │   │   └── __init__.py
    │   │   ├── Test24
    │   │   │   └── __init__.py
    │   │   ├── Test25
    │   │   │   └── __init__.py
    │   │   ├── Test26
    │   │   │   └── __init__.py
    │   │   ├── Test27
    │   │   │   └── __init__.py
    │   │   ├── Test28
    │   │   │   └── __init__.py
    │   │   ├── Test29
    │   │   │   └── __init__.py
    │   │   ├── Test30
    │   │   │   └── __init__.py
    │   │   ├── Test31
    │   │   │   └── __init__.py
    │   │   ├── Test32
    │   │   │   └── __init__.py
    │   │   ├── Test33
    │   │   │   └── __init__.py
    │   │   ├── Test34
    │   │   │   └── __init__.py
    │   │   ├── Test35
    │   │   │   └── __init__.py
    │   │   ├── Test36
    │   │   │   └── __init__.py
    │   │   ├── Test37
    │   │   │   └── __init__.py
    │   │   ├── Test38
    │   │   │   └── __init__.py
    │   │   ├── Test39
    │   │   │   └── __init__.py
    │   │   ├── Test40
    │   │   │   └── __init__.py
    │   │   ├── Test41
    │   │   │   └── __init__.py
    │   │   ├── Test44
    │   │   │   └── __init__.py
    │   │   ├── Test45
    │   │   │   └── __init__.py
    │   │   ├── Test46
    │   │   │   └── __init__.py
    │   │   ├── Test47
    │   │   │   └── __init__.py
    │   │   ├── Test48
    │   │   │   └── __init__.py
    │   │   ├── TestAfterMethod
    │   │   │   └── __init__.py
    │   │   ├── TestAverageEntryPriceProperty
    │   │   │   └── __init__.py
    │   │   ├── TestBalanceAndFeeReductionWorksCorrectlyInSpotModeInBothBuyAndSellOrders
    │   │   │   └── __init__.py
    │   │   ├── TestBalancesAreHandledCorrectlyForCancellingOrdersInSpot
    │   │   │   └── __init__.py
    │   │   ├── TestBeforeMethod
    │   │   │   └── __init__.py
    │   │   ├── TestBeforeTerminate
    │   │   │   └── __init__.py
    │   │   ├── TestCanCancelEntryOrdersAfterOpenPositionLong1
    │   │   │   └── __init__.py
    │   │   ├── TestCanCancelEntryOrdersAfterOpenPositionLong2
    │   │   │   └── __init__.py
    │   │   ├── TestCanCancelEntryOrdersAfterOpenPositionShort1
    │   │   │   └── __init__.py
    │   │   ├── TestCanCancelEntryOrdersAfterOpenPositionShort2
    │   │   │   └── __init__.py
    │   │   ├── TestCannotSetStopLossOrderInGoLong
    │   │   │   └── __init__.py
    │   │   ├── TestCannotSetTakeProfitOrderInGoLong
    │   │   │   └── __init__.py
    │   │   ├── TestCannotSpendMoreThanAvailableBalance
    │   │   │   └── __init__.py
    │   │   ├── TestCannotSubmitStopLossOrderWithSizeMoreThanCurrentPositionQty
    │   │   │   └── __init__.py
    │   │   ├── TestCannotSubmitTakeProfitOrderWithSizeMoreThanCurrentPositionQty
    │   │   │   └── __init__.py
    │   │   ├── TestCanOpenANewPositionImmediatelyAfterClosingViaUpdatePosition
    │   │   │   └── __init__.py
    │   │   ├── TestCanRunWithoutShorting
    │   │   │   └── __init__.py
    │   │   ├── TestCanSubmitStopLossOrderWithSizeEqualToCurrentPositionQty
    │   │   │   └── __init__.py
    │   │   ├── TestCanSubmitStopLossOrderWithSizeLessThanCurrentPositionQty
    │   │   │   └── __init__.py
    │   │   ├── TestCanSubmitTakeProfitAndStopLossAtSameTimeInSpot
    │   │   │   └── __init__.py
    │   │   ├── TestCanSubmitTakeProfitOrderWithSizeEqualToCurrentPositionQty
    │   │   │   └── __init__.py
    │   │   ├── TestCanSubmitTakeProfitOrderWithSizeLessThanCurrentPositionQty
    │   │   │   └── __init__.py
    │   │   ├── TestCapitalPropertyRaisesNotImplementedError
    │   │   │   └── __init__.py
    │   │   ├── TestClosedTradeAfterExitingTrade
    │   │   │   └── __init__.py
    │   │   ├── TestDailyBalancesProperty
    │   │   │   └── __init__.py
    │   │   ├── TestDailyBalanceStoresPortfolioValue
    │   │   │   └── __init__.py
    │   │   ├── TestDefaultHyperparameters
    │   │   │   └── __init__.py
    │   │   ├── TestDnaMethod
    │   │   │   └── __init__.py
    │   │   ├── TestEmptyStrategy
    │   │   │   └── __init__.py
    │   │   ├── TestEntryOrdersAndExitOrdersProperties
    │   │   │   └── __init__.py
    │   │   ├── TestExchangeTypeProperty1
    │   │   │   └── __init__.py
    │   │   ├── TestExchangeTypeProperty2
    │   │   │   └── __init__.py
    │   │   ├── TestFuturesExchangeAvailableMargin
    │   │   │   └── __init__.py
    │   │   ├── TestHasLongAndShortEntryOrdersPropertiesInFilters
    │   │   │   └── __init__.py
    │   │   ├── TestHasLongEntryOrdersProperty
    │   │   │   └── __init__.py
    │   │   ├── TestHasShortEntryOrdersProperty
    │   │   │   └── __init__.py
    │   │   ├── TestIncreasedAndReducedCount
    │   │   │   └── __init__.py
    │   │   ├── TestIncreasingShortPosition
    │   │   │   └── __init__.py
    │   │   ├── TestInsufficientMargin1
    │   │   │   └── __init__.py
    │   │   ├── TestInsufficientMargin2
    │   │   │   └── __init__.py
    │   │   ├── TestInsufficientMargin3
    │   │   │   └── __init__.py
    │   │   ├── TestLeverageProperty1
    │   │   │   └── __init__.py
    │   │   ├── TestLeverageProperty2
    │   │   │   └── __init__.py
    │   │   ├── TestLiquidationInCrossModeForShortTrade
    │   │   │   └── __init__.py
    │   │   ├── TestLiquidationInIsolatedModeForLongTrade
    │   │   │   └── __init__.py
    │   │   ├── TestLiquidationInIsolatedModeForShortTrade
    │   │   │   └── __init__.py
    │   │   ├── TestLogMethodInStrategyClass
    │   │   │   └── __init__.py
    │   │   ├── TestMarketOrderForLowPriceDifference
    │   │   │   └── __init__.py
    │   │   ├── TestMarkPrice
    │   │   │   └── __init__.py
    │   │   ├── TestMetrics1
    │   │   │   └── __init__.py
    │   │   ├── TestMultipleEntryOrdersUpdateEntryLongPositions
    │   │   │   └── __init__.py
    │   │   ├── TestMultipleEntryOrdersUpdateEntryShortPositions
    │   │   │   └── __init__.py
    │   │   ├── TestOnCancelMethod
    │   │   │   └── __init__.py
    │   │   ├── TestOnRouteOpenPosition
    │   │   │   └── __init__.py
    │   │   ├── TestOnRouteOpenPosition2
    │   │   │   └── __init__.py
    │   │   ├── TestOrderIsStopLossProperty
    │   │   │   └── __init__.py
    │   │   ├── TestOrderIsTakeProfitProperty
    │   │   │   └── __init__.py
    │   │   ├── TestOrderPriceCannotBeGreaterThanZero
    │   │   │   └── __init__.py
    │   │   ├── TestOrdersAreSortedBeforeExecution
    │   │   │   └── __init__.py
    │   │   ├── TestOrderValueProperty
    │   │   │   └── __init__.py
    │   │   ├── TestPortfolioValue
    │   │   │   └── __init__.py
    │   │   ├── TestPortfolioValueIncludesPositionValueAndOpenOrdersValue
    │   │   │   └── __init__.py
    │   │   ├── TestPositionExchangeTypeProperty1
    │   │   │   └── __init__.py
    │   │   ├── TestPositionExchangeTypeProperty2
    │   │   │   └── __init__.py
    │   │   ├── TestPositionOpenIncreaseReduceCloseEventsInSpot
    │   │   │   └── __init__.py
    │   │   ├── TestPositions
    │   │   │   └── __init__.py
    │   │   ├── TestPositionTotalCostProperty
    │   │   │   └── __init__.py
    │   │   ├── TestPositionWithLeverage1
    │   │   │   └── __init__.py
    │   │   ├── TestPositionWithLeverage2
    │   │   │   └── __init__.py
    │   │   ├── TestReduceOnlyMarketOrders
    │   │   │   └── __init__.py
    │   │   ├── TestShortInSpot
    │   │   │   └── __init__.py
    │   │   ├── TestStopLossPriceIsReplacedWithMarketOrderForBetterPriceLongPosition
    │   │   │   └── __init__.py
    │   │   ├── TestStopLossPriceIsReplacedWithMarketOrderForBetterPriceShortPosition
    │   │   │   └── __init__.py
    │   │   ├── TestStopOrderShouldConsiderExecutedTakeProfitOrdersInSpot
    │   │   │   └── __init__.py
    │   │   ├── TestStrategyVariablesAreResetBeforeOpeningNewPosition
    │   │   │   └── __init__.py
    │   │   ├── TestTakeProfitPriceIsReplacedWithMarketOrderWhenMoreConvenientLongPosition
    │   │   │   └── __init__.py
    │   │   ├── TestTakeProfitPriceIsReplacedWithMarketOrderWhenMoreConvenientShortPosition
    │   │   │   └── __init__.py
    │   │   ├── TestTerminate
    │   │   │   └── __init__.py
    │   │   ├── TestUsageOfShouldCancelRaisesNotImplementedError
    │   │   │   └── __init__.py
    │   │   ├── TestVanillaStrategy
    │   │   │   └── __init__.py
    │   │   └── TestWalletBalance
    │   │       └── __init__.py
    │   ├── testing_utils.py
    │   ├── utils.py
    │   └── version.py
    ├── LICENSE
    ├── MANIFEST.in
    ├── README.md
    ├── requirements.txt
    ├── setup.py
    ├── tests
    │   ├── data
    │   │   ├── __init__.py
    │   │   ├── test_candles_0.py
    │   │   ├── test_candles_1.py
    │   │   └── test_candles_indicators.py
    │   ├── exchange_tests
    │   │   └── test_bitget.py
    │   ├── __init__.py
    │   ├── storage
    │   │   └── logs
    │   │       └── backtest-mode
    │   ├── test_backtest.py
    │   ├── test_broker.py
    │   ├── test_candle_service.py
    │   ├── test_completed_trade.py
    │   ├── test_conflicting_orders.py
    │   ├── test_dynamic_numpy_array.py
    │   ├── test_exchange.py
    │   ├── test_helpers.py
    │   ├── test_import_candles.py
    │   ├── test_indicators.py
    │   ├── test_isolated_backtest.py
    │   ├── test_metrics.py
    │   ├── test_order.py
    │   ├── test_parent_strategy.py
    │   ├── test_position.py
    │   ├── test_research.py
    │   ├── test_router.py
    │   ├── test_spot_mode.py
    │   ├── test_state_candle.py
    │   ├── test_state_exchanges.py
    │   ├── test_state_logs.py
    │   ├── test_state_orderbook.py
    │   ├── test_state_orders.py
    │   ├── test_state_ticker.py
    │   ├── test_state_trades.py
    │   └── test_utils.py
    └── utils
        ├── candle_info.sh
        └── candle_info.sql

171 directories, 498 files

实例下载地址

Python编写的先进加密交易机器人

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警