Skip to content

Commit d2285ad

Browse files
authored
Update us.htm
1 parent 779c2ef commit d2285ad

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

us.htm

+9-9
Original file line numberDiff line numberDiff line change
@@ -242,25 +242,25 @@
242242
if (price <= 0.25) {
243243
bidSize = 0.001;
244244
} else if (price <= 0.5) {
245-
bidSize = 0.005;
245+
bidSize = 0.01;
246246
} else if (price <= 10) {
247247
bidSize = 0.01;
248248
} else if (price <= 20) {
249-
bidSize = 0.02;
249+
bidSize = 0.01;
250250
} else if (price <= 100) {
251-
bidSize = 0.05;
251+
bidSize = 0.01;
252252
} else if (price <= 200) {
253-
bidSize = 0.1;
253+
bidSize = 0.01;
254254
} else if (price <= 500) {
255-
bidSize = 0.2;
255+
bidSize = 0.01;
256256
} else if (price <= 1000) {
257-
bidSize = 0.5;
257+
bidSize = 0.01;
258258
} else if (price <= 2000) {
259-
bidSize = 1;
259+
bidSize = 0.01;
260260
} else if (price <= 5000) {
261-
bidSize = 2;
261+
bidSize = 0.01;
262262
} else if (price <= 9995) {
263-
bidSize = 5;
263+
bidSize = 0.01;
264264
}
265265

266266
return bidSize;

0 commit comments

Comments
 (0)