spread_size.py 文件源码

python
阅读 21 收藏 0 点赞 0 评论 0

项目:cryptocurrency-trader 作者: TobCar 项目源码 文件源码
def is_profitable(self, highest_bid, lowest_ask):
        '''
        Returns: True if the spread is profitable, False if it is not.
        '''

        with localcontext() as context:
            context.prec = 8

            lowest_ask = Decimal(lowest_ask)
            highest_bid = Decimal(highest_bid)

            spread = lowest_ask - highest_bid

            return spread > self.threshold(highest_bid)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号