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?
Asked
Active
Viewed 1,280 times
2 Answers
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();
}
}
?>
Khan Shahrukh
- 435
- 4
- 15
-
Why all the downvotes? This answer appears at least somewhat useful to me. Is there something actually wrong? – Tom Au May 04 '14 at 19:38
-
@Khan- It seems useful. – Jsd May 05 '14 at 04:37
0
There is Toblibot and Gekko and maybe some others.
I like Gekko quite a bit.
A quick google search will reveal them to you.
Terrence Brannon
- 393
- 3
- 8