2
3
How cryptocoin trade engine works? Is there any open source project available other than buttercoin. I want to build a simple trade engine in ruby on rails for cryptocoins. what are the essential parts needed other than API?
2
3
How cryptocoin trade engine works? Is there any open source project available other than buttercoin. I want to build a simple trade engine in ruby on rails for cryptocoins. what are the essential parts needed other than API?
0
You can code a trade engine in language like C++ or any other which ever is suitable for you. What actually happens in the back-end is an script keeps on repeating after particular interval for new trades or deposits that script can be coded in any language which can communicate with the database. Following is the example of a PHP script which checks for new trades and then update the database if any new trade took place:
<?
$sell = mysql_query("SELECT * FROM trades WHERE `From`<>`Type` LIMIT 1000000000000");
$num = mysql_num_rows($sell);
echo $num;
for ($i = 0; $i < $num; $i++) {
$id = mysql_result($sell,$i,"Id");
if($id != 0)
{
$trade = new Trade($id);
$trade->GetEquivalentTrade();
$trade->ExecuteTrade();
}
}
?>
Why all the downvotes? This answer appears at least somewhat useful to me. Is there something actually wrong? – Tom Au – 2014-05-04T19:38:21.260
@Khan- It seems useful. – Jsd – 2014-05-05T04:37:32.070