/****************************************************************************** * Copyright © 2014-2017 The SuperNET Developers. * * * * See the AUTHORS, DEVELOPER-AGREEMENT and LICENSE files at * * the top-level directory of this distribution for the individual copyright * * holder information and the developer policies on copyright and licensing. * * * * Unless otherwise agreed in a custom licensing agreement, no part of the * * SuperNET software, including this file may be copied, modified, propagated * * or distributed except according to the terms contained in the LICENSE file * * * * Removal or modification of this copyright notice is prohibited. * * * ******************************************************************************/ // included from basilisk.c // "currency":{"value":%.8f, "pending":%.8f} cJSON *tradebot_balancediff(cJSON *item,cJSON *anchoritem) // only item might be null { double current[2],past[2]; int32_t i; cJSON *diffitem = jduplicate(anchoritem); memset(current,0,sizeof(current)); memset(past,0,sizeof(past)); if ( jobj(diffitem,"value") != 0 ) jdelete(diffitem,"value"); if ( jobj(diffitem,"pending") != 0 ) jdelete(diffitem,"pending"); for (i=0; i<2; i++) { if ( current[i] != 0. || past[i] != 0. ) jaddnum(diffitem,i == 0 ? "value" : "pending",current[i] - past[i]); } return(diffitem); } cJSON *tradebot_balancesdiff(struct supernet_info *myinfo,cJSON *current,cJSON *anchor) { cJSON *item,*anchoritem,*diffitem,*array; int32_t i,n; char *field; if ( anchor == 0 ) return(jduplicate(current)); array = cJSON_CreateObject(); n = cJSON_GetArraySize(current); for (i=0; inumexchanges; i++) { value += 0;//InstantDEX_balance(myinfo,0,0,0,exchange,base); } return(value); } void tradebot_pendingadd(struct supernet_info *myinfo,cJSON *tradejson,char *base,double basevolume,char *rel,double relvolume) { portable_mutex_lock(&myinfo->pending_mutex); // add to myinfo->trades portable_mutex_unlock(&myinfo->pending_mutex); } void tradebot_pendingremove(struct supernet_info *myinfo,char *base,double basevolume,char *rel,double relvolume) { portable_mutex_lock(&myinfo->pending_mutex); // remove from myinfo->trades portable_mutex_unlock(&myinfo->pending_mutex); } double tradebot_pending(struct supernet_info *myinfo,char *base) { double pending = 0.; struct pending_trade *tp,*tmp; portable_mutex_lock(&myinfo->pending_mutex); HASH_ITER(hh,myinfo->trades,tp,tmp) { if ( strcmp(base,tp->base) == 0 ) pending += tp->dir * tp->basevolume; else if ( strcmp(base,tp->rel) == 0 ) pending -= tp->dir * tp->relvolume; } portable_mutex_unlock(&myinfo->pending_mutex); return(pending); }