Skip to content

Instantly share code, notes, and snippets.

View artpi's full-sized avatar

Artur Piszek artpi

View GitHub Profile
@artpi
artpi / btc-eth-dca-buy.php
Last active October 14, 2021 16:39 — forked from levelsio/btc-eth-dca-buy.php
This script runs daily and "Dollar Cost Average"-buys $40 BTC and $10 ETH per day
<?php
// Forked from @levelsio
function generateBitstampSignature( $nonce ) {
$message = $nonce . BITSTAMP_ID . BITSTAMP_KEY;
return strtoupper( hash_hmac( 'sha256', $message, BITSTAMP_SECRET ) );
}