Skip to main content

No project description provided

Project description

伏羲量化

示例

from fuxi import *


class MyStrategy(Strategy):
    code: Codes
    is_buy: bool = False

    def on_init(self, params: Dict[str, Any]):
        self.code = params["code"]

    def on_candle(self, code: Codes, candle: DataFrame):
        pass

    def on_signal(self):
        if not self.is_buy:
            self.is_buy = True
            lever = self.symbols[self.code].position.lever
            price = self.symbols[self.code].last_price
            size = self.safe_size(self.code, (self.cash.avail * lever / price))
            cash = price * size / lever
            self.debug_log(f"买入 数量: {size:16,.8f}, 价格: {price:16,.8f}, 保证金: {cash:16,.8f}, 杠杆: {lever:.0f}")
            ok, _, msg = self.buy(self.code, size, price)
            assert ok, msg

    def on_timer(self, timer: Timer):
        if timer != Timer.Minutely:
            return
        last_price = self.symbols[self.code].last_price
        long_size = self.symbols[self.code].position.long.size
        long_frozen_margin = self.symbols[self.code].position.long.frozen_margin
        long_price = self.symbols[self.code].position.long.price
        short_size = self.symbols[self.code].position.short.size
        short_price = self.symbols[self.code].position.short.price
        short_frozen_margin = self.symbols[self.code].position.short.frozen_margin
        self.debug_log(
            "\t\r\n".join(
                [
                    '',
                    f'市场价   : {last_price:16,.8f}',
                    f'浮动盈亏 : {self.pnl:16,.8f}',
                    f'资金   总: {self.cash.total:16,.8f}, 可用: {self.cash.avail:16,.8f}, 冻结: {self.cash.frozen:16,.8f}',
                    f'保证金 总: {self.margin.total:16,.8f}, 可用: {self.margin.avail:16,.8f}, 冻结: {self.margin.frozen:16,.8f}',
                    f'多头   总: {long_size.total:16,.8f}, 可用: {long_size.avail:16,.8f}, 冻结: {long_size.frozen:16,.8f}, 均价: {long_price:16,.8f}, 保证金: {long_frozen_margin:16,.8f}',
                    f'空头   总: {short_size.total:16,.8f}, 可用: {short_size.avail:16,.8f}, 冻结: {short_size.frozen:16,.8f}, 均价: {short_price:16,.8f}, 保证金: {short_frozen_margin:16,.8f}',
                    '',
                ]
            )
        )

    def on_order(self, order: Order):
        if order.status == OrderStatus.Complete:
            self.debug_log(
                f"订单成交 数量: {order.size:16,.8f}, 价格: {order.price:16,.8f}, 成交价格: {order.deal_price:16,.8f}"
            )


def main():
    from setproctitle import setproctitle

    setproctitle('swap_demo')
    code = Codes.BTC_SWAP
    Backtest(
        MyStrategy,
        {"code": code},
        begin='202509',
        end='202510',
        symbols=[(code, 0.005, 0.005, 10)],
        history_size=300,
        log_level=(LogLevel.Info, LogLevel.Debug),
    ).launche()


if __name__ == '__main__':
    main()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fuxi_quant-0.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fuxi_quant-0.0.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

fuxi_quant-0.0.6-cp313-cp313t-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

fuxi_quant-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fuxi_quant-0.0.6-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fuxi_quant-0.0.6-cp313-cp313-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

fuxi_quant-0.0.6-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

fuxi_quant-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fuxi_quant-0.0.6-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fuxi_quant-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

fuxi_quant-0.0.6-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

fuxi_quant-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fuxi_quant-0.0.6-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fuxi_quant-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

fuxi_quant-0.0.6-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

fuxi_quant-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fuxi_quant-0.0.6-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

fuxi_quant-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fuxi_quant-0.0.6-cp38-cp38-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fuxi_quant-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

File details

Details for the file fuxi_quant-0.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86f2f8b289183077e14cf300d563f3f9433e242d494d16679ac97182c6bf47a5
MD5 36e683dd42546bce91a7c8dbaef23f65
BLAKE2b-256 277efe91328da5043dee63105e134c80d585aa3d5db26087f5f2c5cf3b960f48

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eac8db9e412d81b70f47d18a9761b8dde853df179a80cb4ff3ecf164a77ea996
MD5 e7eb56478fde9dfef6d54193ab81aa4e
BLAKE2b-256 48ab0f9f1c13ae7adefa4b9a1c43d2f487fcd49edfe5c14d5f329140bb37b54b

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32b39cb575a14ac6a5584af2759f69ce6c9c6d10e62dc6d9626e1ebabd69411b
MD5 1c7dddcda9e73cc315c8d335bddb58d4
BLAKE2b-256 c7090682fb4a569a9f8f8014633f039b03a4d082ad6006cd7694994ccd0f2d4b

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2ae3fa460279a47e231dd586a4150885a6c24591f511b1d7c7e66f044ea04af
MD5 26e6c4db4fde5e39434fd2cf75d2a534
BLAKE2b-256 4b0695de888250d6e2cfe63103d81b559190fe393332942897f4d94a5699fc13

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5234aa7ad4ad4add2ddbafe1b48ef8c86c63b3c885e7f440fd2b58ad35b0888f
MD5 eb4d210ab14a26918ce9b3b298c7b626
BLAKE2b-256 508111c6d25958b45f7014bde30e40aa828f22f1002685a48d9307166bc9a000

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed03e53342c4547c18fc7eb75239f2c03043dd89e500a85f136cac415fe2f11b
MD5 8ec5370a9e442bd0d10816e55447bda5
BLAKE2b-256 a590fcc78536dc307dedb4f16a03f92e543e5ce406afb47836da570c367aa5e0

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1ae63b847f15ee65db323ed33934725635fe842e49a308b02fa96ad3a49308e9
MD5 6845e17df94c2e3db0f90d12613a1365
BLAKE2b-256 42035b8c67706a4d594a675de2566bddbb7bfa733def188168f209457e77e394

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09be23f03a58593fbd5192f54128d56909cd93f36bc3065ad1a8cb1451ce72df
MD5 63d96e837104667d5c0be31ebfc13a89
BLAKE2b-256 0a27e1eb9ada08beec821b688c707cb2484c0574cd16fda29141df5fe5778bb1

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1729b11fc63980d6e5d5fcb3aee7cf1a5122291d1585c1efd297d5bcf83bba98
MD5 e189a2ef8a0e38d203ad33787e5a4760
BLAKE2b-256 c8c3807736623ca6ff82946d881d1a22f286c1dd5ad1a97ae77573f6abb87369

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cc2711156af4ec31899c64afd3c93e1a54bba582258c8c1757df8c6034cdc16
MD5 d4e5cde4fb6b111a9307421fdb510db7
BLAKE2b-256 0ac630371cad532844b752d24f0d207a64a62cceed02f68e238106bc903c72bc

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 096978fac99dc3503f8e92f95ed6137bcb30ebeb24bb4bf0a201e229e9481cec
MD5 c76404163b5245bb0f83ea785828f3b4
BLAKE2b-256 9f5c3506c95c958f8598017d581e12d6f1d546b9954bc68f9104b8673ae9f2e8

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62c0f81eb0e92212429575f0734bffd41bd9e7cda6f4e71af9351e01bb36095e
MD5 cd93a897674849907cd44eb17fa8f8da
BLAKE2b-256 8029e83acef4ef006e317bc9a2e945eb417697e765443fcc541f6ecbaebb559b

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1dde79c2789363805f52a164658dab12ad6d96025935715c4d3d129b279b4007
MD5 cf813eb701aa39bfa01015e7101d5b97
BLAKE2b-256 2537fb53f1e343ec9fc9d00e15f732be2079fc7abd05af6d269abc75c6b9d999

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1fd1952701baf4790e9ffb184d3ae956577afa1cca2619ec4bc48578da22799
MD5 c4fc57b898e65395930517e78c4b04e7
BLAKE2b-256 bb487f1a4ad395cca64feabeb0b0b4bbb742638575d614b352e861becc83da11

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f5df845fa5e1b2a802b24ccf5fcb55e597246d48f0f5e608f5286203a8ddf1c
MD5 48d11a4115b97f2f9ba033a72aeef306
BLAKE2b-256 c68267ef48d4d9f7d2882c8d0d17b4e1a2eec842f9f756b5ed8ddf0f5654cc57

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff721487008e0d6d7b3ba16185efcd864d6ad8f605e084551dbb9e7a1a19c8fa
MD5 a3eea809851abe7820e94f67e9e31ac1
BLAKE2b-256 437460f9300f0c6886c556d9071fa1cd5cf95e1f03d9ed1a9f0d84957e2cea9a

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 da20f443d8fc2ddf568b63bc4ae544a9cb61c6b8fca79db8b4d9dc983deec18b
MD5 be80a115f1906e32cd7068d3c41536bf
BLAKE2b-256 45ea8dc26645cc2d70b29461420c73d95aafe8ebc9f9fd152d5c720c94784ec2

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a42ea880cf7008f2d102c51a8e89a06c4c8f2899bd658a36cd3f3954d10aa16
MD5 40b754ac3c08dc740a4221afcb1c4f29
BLAKE2b-256 51913c5ebc8204d02168b8157267350eb87d778b7d8d3af0069ede104b63b6f3

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50846211179372e6c029776cbff730f029711c65f8470ae2a0592badf119574d
MD5 86098dfc8ed6919a36f2e2843bc66357
BLAKE2b-256 253f6688af116ca25e1899e65f8fcde85ddfe51ca4b377d0e77b3d1aa6cb9a62

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c1e221e48fe6b39c448c91f38e4cda755762e116637413eb120a3a0e5cbe3b
MD5 9be64a5558b2e3c262c48edcc310c1f1
BLAKE2b-256 845d15f0ea1c505a52729adb6e9d76a7d430f6fdb5efe577b8cf4b1f89b2cdfe

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34ad026329804794fa26b91c9f7e27fff5e3363335735e5bb2e8ca2180a499a1
MD5 e4460ad410cc4b43f6e3ba5b48adc77d
BLAKE2b-256 299235cac06a279d9556acb85cf604726f7e7203a9860c1c89aa121e9f897f2b

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 75021fa990a67238fb89a5e1a61059fd4934b4254b51a0029f5762ac81fd422e
MD5 b955e4c78aa77363eb5584c10d814a15
BLAKE2b-256 430f3434d44178ddc33bbfe2dc90c3738c43ed4b1c4afeff00bc980cdca6dad2

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8ecd26f9807d66bb262051e3c2f0d99fea0bf07c346d8050460369e3ffc3720
MD5 f3936238157cf616c79f0ce22a10ee6b
BLAKE2b-256 2b870709e2a5f79cb3bbadecb829dd606947589a40fde68adb65c67175120a2c

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be5ba296c7ede75b9f74d9310ea27f2d6a58da0560e9b4c3c11470ca4834c411
MD5 b57e00d4936d6369bf925ce95d7ca955
BLAKE2b-256 4465d0d1ada941c4ae97189818126d4f8b59b9f45c25be536910d35a846fe34c

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d8d48586d5faf89b632aa8c8038721c379b15ac9ea0d25a2fd5d01bcbad22c90
MD5 dbb2f3783278c5705a1e592a3ba7d942
BLAKE2b-256 60f5a7cdf4cbde9e6e0f82fc659da6d0de905a6ee24c93c644946a397c0f0cbf

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf2e3432e8f3b47be0b083c1e526a86a619bc45ab0ea1689d2b514d3cb8b1bd6
MD5 861666134a374ecbe9c812c5a0ee474e
BLAKE2b-256 458d649b625352dcb0423e7ded0dd2c444aa8ff7c4100bceaf38d22cafea4c04

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85e005113f026fb1a8d046b25310ef905dcb3f17d074c4ede2c762f4567b6943
MD5 bb882806d8367f0537ec0bc1c4c91bf7
BLAKE2b-256 b491c05b5ff122acd747be86629648a7c648b1c8623092262f6f981a99f8d0be

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c0ff5713e9f7a67d403a30b6efb1db26c3c06138b4978fd0b1895ffb3d1c271
MD5 fe2aae00e073259ec444586f96f8acd8
BLAKE2b-256 c61977c555694b4a579b02e133021ced6411700679d5cc2cd3c3450e8fc477a2

See more details on using hashes here.

File details

Details for the file fuxi_quant-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fuxi_quant-0.0.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd1c77360c322e03096fdeb6c550b4a1d5ac0e4a4c2487e9600adaacb7b38f8c
MD5 e9d01d95e218d4405a0f92611dc527bc
BLAKE2b-256 6ae7546af393786a4aa1559ed5ce0c8ca02aa64cbe5b2da0d6d56cd8d1fc48df

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page