ABCDEFGHIJKLMNOPQRSTU
1
TimestampOpenEx User NameRequest TypeFeatureSummaryDetailed DescriptionStatusNotes
2
1/8/2014 11:22:35KoontasFeature Request / Site SuggestionUser InterfaceAlign Markets ListAlign markets list "center" in the left nav so all of the "/" are aligned.OPEN
3
1/8/2014 11:39:58gielbierBug (Emergency)TradingCancel trade fee bug.I have noticed a bug while canceling orders.
The current math applied is wrong.
On order, (lets say .1 btc for something) goes into the orderbook like:
.1 * 0.995. On cancel this happens. 0.995*1.005. This is an error. because 0.995*1.005 != 1. The problem comes from the reverse fee calculation. The proper way on returning the funds to the user and removing is from the orderbook would be. [BTC from Orderbook]/[1-$fee], making it ; 0.995/[1-0.005] = 0.1. The current implementation takes ((0.005*0.005)*100)% from each order.

Recommendation; create a calculatereversefee.php like this, and use that one to calculate cancel orders.

<?php
header("Content-type: text/plain");
$price = $_GET["P"];
$price2 = $price/(1-0.005);
echo sprintf("%2.8f", $price2);
?>

Great exchange, but let's make it better.
Peace and Regards,

GielBier.



OPEN
4
1/8/2014 11:56:57KoontasBug (Non-emergency)ChatChat ScrollUpon opening chat you have to manually scroll to the bottom.OPEN
5
1/8/2014 13:49:54KoontasFeature Request / Site SuggestionChatKeep Chat OpenOnce opened, keep chat open when switching markets, etc.OPEN
6
1/8/2014 15:09:07KoontasBug (Non-emergency)Trading"Receive" field is editableThe "receive" field under both buy and sell are editable and should be read only.
7
1/8/2014 15:11:22KoontasBug (Non-emergency)TradingBuy "receive" field does not calculateThe "Receive" field for Buy orders does not calculate when you input amounts.
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100