From 26281eb21ceeddbb7e31929081fe6a7283c15938 Mon Sep 17 00:00:00 2001 From: club-mate Date: Sun, 31 Jul 2011 02:38:32 +0200 Subject: add mtgox' public API --- btc/mtgox/mtgox.getDepth | 3 +++ btc/mtgox/mtgox.getTrades | 3 +++ btc/mtgox/mtgox.ticker | 4 ++++ 3 files changed, 10 insertions(+) create mode 100755 btc/mtgox/mtgox.getDepth create mode 100755 btc/mtgox/mtgox.getTrades create mode 100755 btc/mtgox/mtgox.ticker (limited to 'btc/mtgox') diff --git a/btc/mtgox/mtgox.getDepth b/btc/mtgox/mtgox.getDepth new file mode 100755 index 00000000..7401d532 --- /dev/null +++ b/btc/mtgox/mtgox.getDepth @@ -0,0 +1,3 @@ +#! /bin/sh +# get mtgox market depth +wget -qO- http://mtgox.com/code/data/getDepth.php diff --git a/btc/mtgox/mtgox.getTrades b/btc/mtgox/mtgox.getTrades new file mode 100755 index 00000000..4901e379 --- /dev/null +++ b/btc/mtgox/mtgox.getTrades @@ -0,0 +1,3 @@ +#! /bin/sh +# get mtgox last trades +wget -qO- http://mtgox.com/code/data/getTrades.php diff --git a/btc/mtgox/mtgox.ticker b/btc/mtgox/mtgox.ticker new file mode 100755 index 00000000..bbfcc52d --- /dev/null +++ b/btc/mtgox/mtgox.ticker @@ -0,0 +1,4 @@ +#! /bin/sh +# get mtgox ticker data +set -euf +wget -qO- http://mtgox.com/code/data/ticker.php -- cgit v1.2.3 From 3a202fe94eff7b68fa3ffdac35caabf5ee815284 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 --- btc/mtgox/mtgox.getDepth | 2 +- btc/mtgox/mtgox.getTrades | 2 +- btc/mtgox/mtgox.ticker | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'btc/mtgox') diff --git a/btc/mtgox/mtgox.getDepth b/btc/mtgox/mtgox.getDepth index 7401d532..effc28a0 100755 --- a/btc/mtgox/mtgox.getDepth +++ b/btc/mtgox/mtgox.getDepth @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox market depth -wget -qO- http://mtgox.com/code/data/getDepth.php +$ curl -ksS http://mtgox.com/code/data/getDepth.php diff --git a/btc/mtgox/mtgox.getTrades b/btc/mtgox/mtgox.getTrades index 4901e379..fd0d0ea9 100755 --- a/btc/mtgox/mtgox.getTrades +++ b/btc/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 diff --git a/btc/mtgox/mtgox.ticker b/btc/mtgox/mtgox.ticker index bbfcc52d..54a150f0 100755 --- a/btc/mtgox/mtgox.ticker +++ b/btc/mtgox/mtgox.ticker @@ -1,4 +1,4 @@ #! /bin/sh # get mtgox ticker data set -euf -wget -qO- http://mtgox.com/code/data/ticker.php +curl -ksS http://mtgox.com/code/data/ticker.php -- cgit v1.2.3 From 554c90e8456f44ac82ac3d64f3c31f0ac93cac8d 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 --- btc/mtgox/mtgox.getDepth | 2 +- btc/mtgox/mtgox.getTrades | 2 +- btc/mtgox/mtgox.ticker | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'btc/mtgox') diff --git a/btc/mtgox/mtgox.getDepth b/btc/mtgox/mtgox.getDepth index effc28a0..9a607979 100755 --- a/btc/mtgox/mtgox.getDepth +++ b/btc/mtgox/mtgox.getDepth @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox market depth -$ curl -ksS http://mtgox.com/code/data/getDepth.php +$ curl -ksS https://mtgox.com/code/data/getDepth.php diff --git a/btc/mtgox/mtgox.getTrades b/btc/mtgox/mtgox.getTrades index fd0d0ea9..73e5a68d 100755 --- a/btc/mtgox/mtgox.getTrades +++ b/btc/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 diff --git a/btc/mtgox/mtgox.ticker b/btc/mtgox/mtgox.ticker index 54a150f0..b24dfb35 100755 --- a/btc/mtgox/mtgox.ticker +++ b/btc/mtgox/mtgox.ticker @@ -1,4 +1,4 @@ #! /bin/sh # get mtgox ticker data set -euf -curl -ksS http://mtgox.com/code/data/ticker.php +curl -ksS https://mtgox.com/code/data/ticker.php -- cgit v1.2.3