It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency,
since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site;
Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in -
your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency
so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
Kudos! Oh sure it does, thanks a lot. I have been looking for this for months now. Though this didn't give me daily OHLC & volume data since the inception of coinsecure.in the data still helps.
// Get references to elements on the page. var form = document.getElementById('message-form'); var messageField = document.getElementById('message'); var messagesList = document.getElementById('messages'); var socketStatus = document.getElementById('status'); var closeBtn = document.getElementById('close');
// Create a new WebSocket. var socket = new WebSocket('wss://coinsecure.in/websocket');
// Handle any errors that occur. socket.onerror = function(error) { console.log('WebSocket Error: ' + error); };
// Show a connected message when the WebSocket is opened. socket.onopen = function(event) { socketStatus.innerHTML = 'Connected to: ' + event.currentTarget.URL; socketStatus.className = 'open'; };
// Handle messages sent by the server. socket.onmessage = function(event) { var message = event.data; messagesList.innerHTML += '
Received:' + message + '
'; };
// Show a disconnected message when the WebSocket is closed. socket.onclose = function(event) { socketStatus.innerHTML = 'Disconnected from WebSocket.'; socketStatus.className = 'closed'; };
// Send a message when the form is submitted. form.onsubmit = function(e) { e.preventDefault();
// Retrieve the message from the textarea. var message = messageField.value;
// Send the message through the WebSocket. socket.send(message);
// Add the message to the messages list. messagesList.innerHTML += '
Sent:' + message + '
';
// Clear out the message field. messageField.value = '';
return false; };
// Close the WebSocket connection when the close button is clicked. closeBtn.onclick = function(e) { e.preventDefault();
When socket is connected, it will show ticker values by default, but you can get other values by sending specific messages and edit app.js file according to your requirements
Will try to do a short script to pull the ohlc data when I get some time. If you want to give it a poke, its websocket call to wss://coinsecure.in/websocket The message packet required is {"method": "daily"}
"daily" can be substituted with minutely hourly daily weekly monthly yearly full
I am looking for raw exchange data for BTC INR pair for exchanges in India. Similar to data displayed after clicking 'Load raw data' on following page.