timmolter / XChange - Cryptsy GetFee

时间:2015-08-07 17:15:44

标签: java json bitcoin

我知道这可能是一个不起眼的API,但有没有人知道如何才能获得市场费用?

我试过这个

system.out.println("\nCalculateFees:\n"
                + ((CryptsyTradeServiceRaw) TradeService).calculateCryptsyFees(CryptsyOrderType.Sell, new BigDecimal("2"), new BigDecimal("286.62403820")));

它给了我错误的费用。

1 个答案:

答案 0 :(得分:0)

看起来像cryptsy在这里发布费用:Fees

if(VolumeInBTC < 0.5){
            PairFee = 0.0033; //0.33%
        }
        else if(VolumeInBTC >= 0.5 && VolumeInBTC < 1.0){
            PairFee = 0.0031; //0.31%
        }
        else if(VolumeInBTC >= 1.0 && VolumeInBTC < 5.0){
            PairFee = 0.0029; //0.29%
        }
        else if(VolumeInBTC >= 5 && VolumeInBTC < 20){
            PairFee = 0.0027; //0.27%
        }
        else if(VolumeInBTC >= 20){
            PairFee = 0.0025; //0.25%
        }
        else{
            System.exit(1);//something went wrong
        }
        return PairFee;
    }