I hate it when HitBTC is doing this

Its the same with Tezos, they are trading it for months now but the tokens arent on market yet

. They made an arrangement with Paragon with this but it would be better if they just waited when everyone got there tokens.
Wait, what? Are you saying Paragon is helping HitBTC with their futures contracts? Does their smart contract support that?
https://github.com/paragon-coin/token/blob/master/ParagonCoin.solIt looks like there is indeed a function in the smart contract that enables the transfer of tokens from one owner to another.
/**
* Transfer given number of tokens from given owner to given recipient.
*
* @param _from address to transfer tokens from the owner of
* @param _to address to transfer tokens to the owner of
* @param _value number of tokens to transfer from given owner to given
* recipient
* @return true if tokens were transferred successfully, false otherwise
*/
function transferFrom (address _from, address _to, uint256 _value)
returns (bool success) {
return AbstractToken.transferFrom (_from, _to, _value);
}