From dd3ae1c4d45a84b8b6cd9f86c1efac6709ffc4d7 Mon Sep 17 00:00:00 2001 From: club-mate Date: Sun, 31 Jul 2011 02:38:32 +0200 Subject: add mtgox' public API --- mtgox/mtgox.getTrades | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 mtgox/mtgox.getTrades (limited to 'mtgox/mtgox.getTrades') diff --git a/mtgox/mtgox.getTrades b/mtgox/mtgox.getTrades new file mode 100755 index 00000000..4901e379 --- /dev/null +++ b/mtgox/mtgox.getTrades @@ -0,0 +1,3 @@ +#! /bin/sh +# get mtgox last trades +wget -qO- http://mtgox.com/code/data/getTrades.php -- cgit v1.2.3 From b09847aae35f03ca12c74bc9905e88ddfd5c7856 Mon Sep 17 00:00:00 2001 From: club-mate Date: Sun, 31 Jul 2011 03:50:12 +0200 Subject: mtgox: s/wget/curl/g --- mtgox/mtgox.getTrades | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mtgox/mtgox.getTrades') diff --git a/mtgox/mtgox.getTrades b/mtgox/mtgox.getTrades index 4901e379..fd0d0ea9 100755 --- a/mtgox/mtgox.getTrades +++ b/mtgox/mtgox.getTrades @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox last trades -wget -qO- http://mtgox.com/code/data/getTrades.php +$ curl -ksS http://mtgox.com/code/data/getTrades.phl -- cgit v1.2.3 From 2dbf79c24b497da812db1e9b384f679df96712d3 Mon Sep 17 00:00:00 2001 From: club-mate Date: Sun, 31 Jul 2011 04:12:02 +0200 Subject: mtgox: s/http/https/g --- mtgox/mtgox.getTrades | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mtgox/mtgox.getTrades') diff --git a/mtgox/mtgox.getTrades b/mtgox/mtgox.getTrades index fd0d0ea9..73e5a68d 100755 --- a/mtgox/mtgox.getTrades +++ b/mtgox/mtgox.getTrades @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox last trades -$ curl -ksS http://mtgox.com/code/data/getTrades.phl +$ curl -ksS https://mtgox.com/code/data/getTrades.phl -- cgit v1.2.3