dexbot 1.4.13 → 1.4.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (330) hide show
  1. package/README.md +77 -68
  2. package/claw/data/positions.json +3391 -1
  3. package/claw/docs/AI_BOT_LIBRARY_API.md +1 -1
  4. package/claw/docs/POSITION_HEALTH.md +2 -2
  5. package/claw/modules/claw_catalog.ts +1 -3
  6. package/claw/modules/claw_launcher.ts +2 -3
  7. package/claw/modules/claw_skill_md.ts +1 -1
  8. package/claw/modules/decision_loop.ts +1 -1
  9. package/claw/modules/dexbot_profiles.ts +2 -33
  10. package/claw/modules/feed_price_source.ts +3 -32
  11. package/claw/modules/launcher_mode_detector.ts +1 -1
  12. package/claw/modules/mcp_utils.ts +1 -1
  13. package/claw/modules/mpa_utils.ts +36 -1
  14. package/claw/modules/position_discovery.ts +1 -28
  15. package/claw/modules/position_health.ts +1 -20
  16. package/claw/modules/position_manager.ts +3 -28
  17. package/claw/modules/skill_utils.ts +1 -1
  18. package/claw/modules/types.ts +0 -53
  19. package/claw/package.json +1 -1
  20. package/claw/runtimes/openclaw-plugin/openclaw.plugin.json +1 -1
  21. package/claw/runtimes/openclaw-plugin/package.json +1 -1
  22. package/claw/skills/margin-trading/references/honest-assets.md +1 -1
  23. package/claw/skills/margin-trading/references/position-management.md +2 -2
  24. package/claw/skills/shared/references/js-automation-overview.md +2 -2
  25. package/claw/skills/trend-detection/references/service.md +24 -17
  26. package/claw/tests/test_claw_bridge.ts +47 -47
  27. package/claw/tests/test_claw_catalog_and_credentials.ts +9 -9
  28. package/claw/tests/test_claw_chain_layer.ts +54 -54
  29. package/claw/tests/test_claw_data_flow.ts +41 -41
  30. package/claw/tests/test_claw_domain_logic.ts +26 -26
  31. package/claw/tests/test_claw_manifest_and_matrix.ts +1 -1
  32. package/claw/tests/test_claw_mcp_transport.ts +16 -16
  33. package/claw/tests/test_claw_regressions.ts +43 -43
  34. package/claw/tests/test_claw_skill_generation.ts +1 -1
  35. package/claw/tests/test_claw_state_store.ts +2 -2
  36. package/claw/tests/test_dexbot_profiles.ts +4 -4
  37. package/claw/tests/test_memu_bridge.ts +3 -3
  38. package/claw/tests/test_nullclaw_tmp_integration.ts +1 -1
  39. package/claw/tests/test_position_health.ts +2 -2
  40. package/claw/tests/test_position_manager.ts +18 -18
  41. package/claw/tests/test_position_manager_watch_health.ts +2 -2
  42. package/claw/tests/test_short_mpa_strategy.ts +12 -12
  43. package/dist/analysis/chart_utils.d.ts +13 -1
  44. package/dist/analysis/chart_utils.d.ts.map +1 -1
  45. package/dist/analysis/chart_utils.js +16 -1
  46. package/dist/analysis/chart_utils.js.map +1 -1
  47. package/dist/analysis/math_utils.d.ts +8 -12
  48. package/dist/analysis/math_utils.d.ts.map +1 -1
  49. package/dist/analysis/math_utils.js +9 -75
  50. package/dist/analysis/math_utils.js.map +1 -1
  51. package/dist/analysis/tradingview/tradingview_uplot_chart_generator.js +4 -4
  52. package/dist/dexbot.d.ts.map +1 -1
  53. package/dist/dexbot.js +54 -35
  54. package/dist/dexbot.js.map +1 -1
  55. package/dist/market_adapter/candle_utils.d.ts +18 -1
  56. package/dist/market_adapter/candle_utils.d.ts.map +1 -1
  57. package/dist/market_adapter/candle_utils.js +50 -1
  58. package/dist/market_adapter/candle_utils.js.map +1 -1
  59. package/dist/market_adapter/core/config_normalizers.js +1 -1
  60. package/dist/market_adapter/core/config_normalizers.js.map +1 -1
  61. package/dist/market_adapter/core/kibana_client.d.ts +2 -2
  62. package/dist/market_adapter/core/kibana_client.js +2 -2
  63. package/dist/market_adapter/core/kibana_market_candles.d.ts +1 -87
  64. package/dist/market_adapter/core/kibana_market_candles.d.ts.map +1 -1
  65. package/dist/market_adapter/core/kibana_market_candles.js +1 -80
  66. package/dist/market_adapter/core/kibana_market_candles.js.map +1 -1
  67. package/dist/market_adapter/core/market_adapter_service.d.ts +0 -8
  68. package/dist/market_adapter/core/market_adapter_service.d.ts.map +1 -1
  69. package/dist/market_adapter/core/market_adapter_service.js +28 -115
  70. package/dist/market_adapter/core/market_adapter_service.js.map +1 -1
  71. package/dist/market_adapter/core/signals/hurst_analyzer.d.ts.map +1 -0
  72. package/dist/{analysis/trend_detection → market_adapter/core/signals}/hurst_analyzer.js +2 -2
  73. package/dist/market_adapter/core/signals/hurst_analyzer.js.map +1 -0
  74. package/dist/{analysis/trend_detection → market_adapter/core/signals}/kalman_trend_analyzer.d.ts +0 -1
  75. package/dist/market_adapter/core/signals/kalman_trend_analyzer.d.ts.map +1 -0
  76. package/dist/{analysis/trend_detection → market_adapter/core/signals}/kalman_trend_analyzer.js +2 -4
  77. package/dist/market_adapter/core/signals/kalman_trend_analyzer.js.map +1 -0
  78. package/dist/{analysis/trend_detection → market_adapter/core/signals}/kalman_velocity_smoothing.d.ts +25 -4
  79. package/dist/market_adapter/core/signals/kalman_velocity_smoothing.d.ts.map +1 -0
  80. package/dist/{analysis/trend_detection → market_adapter/core/signals}/kalman_velocity_smoothing.js +41 -19
  81. package/dist/market_adapter/core/signals/kalman_velocity_smoothing.js.map +1 -0
  82. package/dist/market_adapter/core/signals/permutation_entropy_analyzer.d.ts.map +1 -0
  83. package/dist/{analysis/trend_detection → market_adapter/core/signals}/permutation_entropy_analyzer.js +2 -2
  84. package/dist/market_adapter/core/signals/permutation_entropy_analyzer.js.map +1 -0
  85. package/dist/market_adapter/core/strategies/ama.d.ts +1 -19
  86. package/dist/market_adapter/core/strategies/ama.d.ts.map +1 -1
  87. package/dist/market_adapter/core/strategies/ama.js +1 -1
  88. package/dist/market_adapter/core/strategies/ama.js.map +1 -1
  89. package/dist/market_adapter/core/strategies/ama_slope_model.d.ts +2 -13
  90. package/dist/market_adapter/core/strategies/ama_slope_model.d.ts.map +1 -1
  91. package/dist/market_adapter/core/strategies/ama_slope_model.js +15 -26
  92. package/dist/market_adapter/core/strategies/ama_slope_model.js.map +1 -1
  93. package/dist/market_adapter/core/strategies/atr/calculator.d.ts +38 -3
  94. package/dist/market_adapter/core/strategies/atr/calculator.d.ts.map +1 -1
  95. package/dist/market_adapter/core/strategies/atr/calculator.js +84 -24
  96. package/dist/market_adapter/core/strategies/atr/calculator.js.map +1 -1
  97. package/dist/market_adapter/core/strategies/collateral_manager.d.ts +1 -1
  98. package/dist/market_adapter/core/strategies/collateral_manager.js +1 -1
  99. package/dist/market_adapter/core/strategies/dynamic_weight_series.d.ts +32 -0
  100. package/dist/market_adapter/core/strategies/dynamic_weight_series.d.ts.map +1 -0
  101. package/dist/market_adapter/core/strategies/dynamic_weight_series.js +136 -0
  102. package/dist/market_adapter/core/strategies/dynamic_weight_series.js.map +1 -0
  103. package/dist/market_adapter/core/strategies/regime_gate.d.ts +6 -21
  104. package/dist/market_adapter/core/strategies/regime_gate.d.ts.map +1 -1
  105. package/dist/market_adapter/core/strategies/regime_gate.js +11 -74
  106. package/dist/market_adapter/core/strategies/regime_gate.js.map +1 -1
  107. package/dist/market_adapter/core/strategies/regime_interp.d.ts +13 -0
  108. package/dist/market_adapter/core/strategies/regime_interp.d.ts.map +1 -0
  109. package/dist/market_adapter/core/strategies/regime_interp.js +74 -0
  110. package/dist/market_adapter/core/strategies/regime_interp.js.map +1 -0
  111. package/dist/market_adapter/core/strategies/volatility_shift.d.ts +22 -0
  112. package/dist/market_adapter/core/strategies/volatility_shift.d.ts.map +1 -0
  113. package/dist/market_adapter/core/strategies/volatility_shift.js +37 -0
  114. package/dist/market_adapter/core/strategies/volatility_shift.js.map +1 -0
  115. package/dist/market_adapter/inputs/fetch_cex_synthetic_data.js +3 -4
  116. package/dist/market_adapter/inputs/fetch_cex_synthetic_data.js.map +1 -1
  117. package/dist/market_adapter/inputs/fetch_lp_data.d.ts +1 -10
  118. package/dist/market_adapter/inputs/fetch_lp_data.d.ts.map +1 -1
  119. package/dist/market_adapter/inputs/fetch_lp_data.js +1 -1
  120. package/dist/market_adapter/inputs/fetch_lp_data.js.map +1 -1
  121. package/dist/market_adapter/lp_chart_core.d.ts.map +1 -1
  122. package/dist/market_adapter/lp_chart_core.js +0 -10
  123. package/dist/market_adapter/lp_chart_core.js.map +1 -1
  124. package/dist/market_adapter/lp_chart_runner.d.ts +1 -16
  125. package/dist/market_adapter/lp_chart_runner.d.ts.map +1 -1
  126. package/dist/market_adapter/lp_chart_runner.js +1 -15
  127. package/dist/market_adapter/lp_chart_runner.js.map +1 -1
  128. package/dist/market_adapter/market_adapter.d.ts +3 -3
  129. package/dist/market_adapter/market_adapter.d.ts.map +1 -1
  130. package/dist/market_adapter/market_adapter.js +6 -8
  131. package/dist/market_adapter/market_adapter.js.map +1 -1
  132. package/dist/market_adapter/merge_lp_data.js +5 -5
  133. package/dist/market_adapter/utils/adapter_client.d.ts +1 -3
  134. package/dist/market_adapter/utils/adapter_client.d.ts.map +1 -1
  135. package/dist/market_adapter/utils/adapter_client.js +1 -14
  136. package/dist/market_adapter/utils/adapter_client.js.map +1 -1
  137. package/dist/market_adapter/utils/data_discovery.d.ts.map +1 -1
  138. package/dist/market_adapter/utils/data_discovery.js +1 -2
  139. package/dist/market_adapter/utils/data_discovery.js.map +1 -1
  140. package/dist/market_adapter/utils/dynamic_grid_snapshot.d.ts +1 -3
  141. package/dist/market_adapter/utils/dynamic_grid_snapshot.d.ts.map +1 -1
  142. package/dist/market_adapter/utils/dynamic_grid_snapshot.js +1 -1
  143. package/dist/market_adapter/utils/dynamic_grid_snapshot.js.map +1 -1
  144. package/dist/market_adapter/utils/file_lock.d.ts +10 -2
  145. package/dist/market_adapter/utils/file_lock.d.ts.map +1 -1
  146. package/dist/market_adapter/utils/file_lock.js +171 -102
  147. package/dist/market_adapter/utils/file_lock.js.map +1 -1
  148. package/dist/market_adapter/utils/native_history.d.ts +1 -9
  149. package/dist/market_adapter/utils/native_history.d.ts.map +1 -1
  150. package/dist/market_adapter/utils/native_history.js +1 -21
  151. package/dist/market_adapter/utils/native_history.js.map +1 -1
  152. package/dist/modules/account_bots.d.ts +16 -38
  153. package/dist/modules/account_bots.d.ts.map +1 -1
  154. package/dist/modules/account_bots.js +16 -38
  155. package/dist/modules/account_bots.js.map +1 -1
  156. package/dist/modules/account_orders.d.ts +11 -11
  157. package/dist/modules/account_orders.d.ts.map +1 -1
  158. package/dist/modules/account_orders.js +11 -18
  159. package/dist/modules/account_orders.js.map +1 -1
  160. package/dist/modules/bitshares_client.d.ts +5 -8
  161. package/dist/modules/bitshares_client.d.ts.map +1 -1
  162. package/dist/modules/bitshares_client.js +6 -10
  163. package/dist/modules/bitshares_client.js.map +1 -1
  164. package/dist/modules/bots_file_lock.d.ts +8 -5
  165. package/dist/modules/bots_file_lock.d.ts.map +1 -1
  166. package/dist/modules/bots_file_lock.js +8 -5
  167. package/dist/modules/bots_file_lock.js.map +1 -1
  168. package/dist/modules/chain_keys.d.ts +31 -22
  169. package/dist/modules/chain_keys.d.ts.map +1 -1
  170. package/dist/modules/chain_keys.js +31 -22
  171. package/dist/modules/chain_keys.js.map +1 -1
  172. package/dist/modules/chain_orders.d.ts +52 -48
  173. package/dist/modules/chain_orders.d.ts.map +1 -1
  174. package/dist/modules/chain_orders.js +124 -49
  175. package/dist/modules/chain_orders.js.map +1 -1
  176. package/dist/modules/config.d.ts +3 -0
  177. package/dist/modules/config.d.ts.map +1 -1
  178. package/dist/modules/config.js +3 -0
  179. package/dist/modules/config.js.map +1 -1
  180. package/dist/modules/constants.d.ts +17 -13
  181. package/dist/modules/constants.d.ts.map +1 -1
  182. package/dist/modules/constants.js +42 -21
  183. package/dist/modules/constants.js.map +1 -1
  184. package/dist/modules/cr_planner.d.ts +2 -1
  185. package/dist/modules/cr_planner.d.ts.map +1 -1
  186. package/dist/modules/cr_planner.js +1 -1
  187. package/dist/modules/cr_planner.js.map +1 -1
  188. package/dist/modules/credential_policy.d.ts +6 -4
  189. package/dist/modules/credential_policy.d.ts.map +1 -1
  190. package/dist/modules/credential_policy.js +6 -4
  191. package/dist/modules/credential_policy.js.map +1 -1
  192. package/dist/modules/credit_runtime.d.ts.map +1 -1
  193. package/dist/modules/credit_runtime.js +4 -8
  194. package/dist/modules/credit_runtime.js.map +1 -1
  195. package/dist/modules/dexbot_class.d.ts +33 -88
  196. package/dist/modules/dexbot_class.d.ts.map +1 -1
  197. package/dist/modules/dexbot_class.js +36 -68
  198. package/dist/modules/dexbot_class.js.map +1 -1
  199. package/dist/modules/dexbot_cow_runtime.d.ts +7 -7
  200. package/dist/modules/dexbot_cow_runtime.d.ts.map +1 -1
  201. package/dist/modules/dexbot_cow_runtime.js +7 -7
  202. package/dist/modules/dexbot_cow_runtime.js.map +1 -1
  203. package/dist/modules/dexbot_credential_client.d.ts +3 -3
  204. package/dist/modules/dexbot_credential_client.js +3 -3
  205. package/dist/modules/dexbot_credential_client.js.map +1 -1
  206. package/dist/modules/dexbot_fill_runtime.d.ts +1 -7
  207. package/dist/modules/dexbot_fill_runtime.d.ts.map +1 -1
  208. package/dist/modules/dexbot_fill_runtime.js +1 -9
  209. package/dist/modules/dexbot_fill_runtime.js.map +1 -1
  210. package/dist/modules/dexbot_maintenance_runtime.d.ts.map +1 -1
  211. package/dist/modules/dexbot_maintenance_runtime.js +3 -1
  212. package/dist/modules/dexbot_maintenance_runtime.js.map +1 -1
  213. package/dist/modules/dexbot_state_recovery.d.ts.map +1 -1
  214. package/dist/modules/dexbot_state_recovery.js +99 -1
  215. package/dist/modules/dexbot_state_recovery.js.map +1 -1
  216. package/dist/modules/graceful_shutdown.d.ts +4 -2
  217. package/dist/modules/graceful_shutdown.d.ts.map +1 -1
  218. package/dist/modules/graceful_shutdown.js +4 -2
  219. package/dist/modules/graceful_shutdown.js.map +1 -1
  220. package/dist/modules/launcher/bot_supervisor.d.ts +1 -1
  221. package/dist/modules/launcher/bot_supervisor.d.ts.map +1 -1
  222. package/dist/modules/launcher/bot_supervisor.js +1 -4
  223. package/dist/modules/launcher/bot_supervisor.js.map +1 -1
  224. package/dist/modules/launcher/child_env.d.ts.map +1 -1
  225. package/dist/modules/launcher/child_env.js +3 -0
  226. package/dist/modules/launcher/child_env.js.map +1 -1
  227. package/dist/modules/market_adapter_whitelist.d.ts +1 -2
  228. package/dist/modules/market_adapter_whitelist.d.ts.map +1 -1
  229. package/dist/modules/market_adapter_whitelist.js +1 -4
  230. package/dist/modules/market_adapter_whitelist.js.map +1 -1
  231. package/dist/modules/node_health_cache.d.ts +12 -4
  232. package/dist/modules/node_health_cache.d.ts.map +1 -1
  233. package/dist/modules/node_health_cache.js +13 -13
  234. package/dist/modules/node_health_cache.js.map +1 -1
  235. package/dist/modules/node_manager.d.ts.map +1 -1
  236. package/dist/modules/node_manager.js +3 -6
  237. package/dist/modules/node_manager.js.map +1 -1
  238. package/dist/modules/order/accounting.d.ts +2 -37
  239. package/dist/modules/order/accounting.d.ts.map +1 -1
  240. package/dist/modules/order/accounting.js +2 -64
  241. package/dist/modules/order/accounting.js.map +1 -1
  242. package/dist/modules/order/export.d.ts +1 -37
  243. package/dist/modules/order/export.d.ts.map +1 -1
  244. package/dist/modules/order/export.js +1 -1
  245. package/dist/modules/order/export.js.map +1 -1
  246. package/dist/modules/order/format.d.ts +28 -14
  247. package/dist/modules/order/format.d.ts.map +1 -1
  248. package/dist/modules/order/format.js +73 -18
  249. package/dist/modules/order/format.js.map +1 -1
  250. package/dist/modules/order/grid.d.ts +11 -5
  251. package/dist/modules/order/grid.d.ts.map +1 -1
  252. package/dist/modules/order/grid.js +79 -37
  253. package/dist/modules/order/grid.js.map +1 -1
  254. package/dist/modules/order/grid_reconcile_internal.js +2 -2
  255. package/dist/modules/order/grid_reconcile_internal.js.map +1 -1
  256. package/dist/modules/order/logger_state.d.ts +3 -45
  257. package/dist/modules/order/logger_state.d.ts.map +1 -1
  258. package/dist/modules/order/logger_state.js +3 -55
  259. package/dist/modules/order/logger_state.js.map +1 -1
  260. package/dist/modules/order/manager.d.ts +0 -4
  261. package/dist/modules/order/manager.d.ts.map +1 -1
  262. package/dist/modules/order/manager.js +3 -9
  263. package/dist/modules/order/manager.js.map +1 -1
  264. package/dist/modules/order/sync_engine.d.ts +0 -2
  265. package/dist/modules/order/sync_engine.d.ts.map +1 -1
  266. package/dist/modules/order/sync_engine.js +1 -4
  267. package/dist/modules/order/sync_engine.js.map +1 -1
  268. package/dist/modules/order/utils/math.d.ts +2 -11
  269. package/dist/modules/order/utils/math.d.ts.map +1 -1
  270. package/dist/modules/order/utils/math.js +3 -14
  271. package/dist/modules/order/utils/math.js.map +1 -1
  272. package/dist/modules/order/utils/order.d.ts +1 -17
  273. package/dist/modules/order/utils/order.d.ts.map +1 -1
  274. package/dist/modules/order/utils/order.js +3 -21
  275. package/dist/modules/order/utils/order.js.map +1 -1
  276. package/dist/modules/order/utils/system.d.ts +1 -11
  277. package/dist/modules/order/utils/system.d.ts.map +1 -1
  278. package/dist/modules/order/utils/system.js +3 -3
  279. package/dist/modules/order/utils/system.js.map +1 -1
  280. package/dist/modules/order/utils/validate.d.ts +1 -26
  281. package/dist/modules/order/utils/validate.d.ts.map +1 -1
  282. package/dist/modules/order/utils/validate.js +1 -1
  283. package/dist/modules/order/utils/validate.js.map +1 -1
  284. package/dist/modules/order/working_grid.d.ts +3 -9
  285. package/dist/modules/order/working_grid.d.ts.map +1 -1
  286. package/dist/modules/order/working_grid.js +3 -11
  287. package/dist/modules/order/working_grid.js.map +1 -1
  288. package/dist/modules/paths.d.ts +43 -2
  289. package/dist/modules/paths.d.ts.map +1 -1
  290. package/dist/modules/paths.js +81 -21
  291. package/dist/modules/paths.js.map +1 -1
  292. package/dist/modules/runtime_settings.js +1 -1
  293. package/dist/modules/runtime_settings.js.map +1 -1
  294. package/dist/pm2.d.ts +1 -1
  295. package/dist/pm2.d.ts.map +1 -1
  296. package/dist/pm2.js +1 -4
  297. package/dist/pm2.js.map +1 -1
  298. package/dist/scripts/analyze-orders.d.ts.map +1 -1
  299. package/dist/scripts/analyze-orders.js +36 -45
  300. package/dist/scripts/analyze-orders.js.map +1 -1
  301. package/dist/scripts/sync-version.js +22 -0
  302. package/dist/scripts/sync-version.js.map +1 -1
  303. package/ecosystem.config.cjs +32 -0
  304. package/package.json +4 -1
  305. package/scripts/README.md +24 -8
  306. package/scripts/clear-all.sh +39 -12
  307. package/scripts/clear-logs.sh +1 -1
  308. package/scripts/clear-market-adapter.sh +3 -3
  309. package/scripts/clear-orders.sh +1 -1
  310. package/scripts/create-bot-symlinks.sh +4 -2
  311. package/scripts/lib/dexbot-paths.sh +63 -0
  312. package/scripts/reset-settings.sh +1 -1
  313. package/dist/analysis/trend_detection/hurst_analyzer.d.ts.map +0 -1
  314. package/dist/analysis/trend_detection/hurst_analyzer.js.map +0 -1
  315. package/dist/analysis/trend_detection/kalman_trend_analyzer.d.ts.map +0 -1
  316. package/dist/analysis/trend_detection/kalman_trend_analyzer.js.map +0 -1
  317. package/dist/analysis/trend_detection/kalman_velocity_smoothing.d.ts.map +0 -1
  318. package/dist/analysis/trend_detection/kalman_velocity_smoothing.js.map +0 -1
  319. package/dist/analysis/trend_detection/permutation_entropy_analyzer.d.ts.map +0 -1
  320. package/dist/analysis/trend_detection/permutation_entropy_analyzer.js.map +0 -1
  321. package/dist/market_adapter/index.d.ts +0 -32
  322. package/dist/market_adapter/index.d.ts.map +0 -1
  323. package/dist/market_adapter/index.js +0 -39
  324. package/dist/market_adapter/index.js.map +0 -1
  325. package/dist/scripts/fix-err-message.d.ts +0 -3
  326. package/dist/scripts/fix-err-message.d.ts.map +0 -1
  327. package/dist/scripts/fix-err-message.js +0 -193
  328. package/dist/scripts/fix-err-message.js.map +0 -1
  329. /package/dist/{analysis/trend_detection → market_adapter/core/signals}/hurst_analyzer.d.ts +0 -0
  330. /package/dist/{analysis/trend_detection → market_adapter/core/signals}/permutation_entropy_analyzer.d.ts +0 -0
@@ -144639,8 +144639,3398 @@
144639
144639
  "strategy": "short-mpa-bts",
144640
144640
  "status": "planned",
144641
144641
  "updatedAt": "2026-08-10T20:24:20.102Z"
144642
+ },
144643
+ {
144644
+ "accountName": "alice",
144645
+ "assets": {
144646
+ "collateral": {
144647
+ "id": "1.3.0",
144648
+ "precision": 5,
144649
+ "symbol": "BTS"
144650
+ },
144651
+ "mpa": {
144652
+ "id": "1.3.10",
144653
+ "precision": 5,
144654
+ "symbol": "HONEST.USD"
144655
+ }
144656
+ },
144657
+ "collateral": {
144658
+ "amount": 25000,
144659
+ "asset": "BTS",
144660
+ "targetCollateralRatio": null
144661
+ },
144662
+ "createdAt": "2026-08-16T21:16:41.587Z",
144663
+ "debt": {
144664
+ "amount": 10,
144665
+ "asset": "HONEST.USD"
144666
+ },
144667
+ "entry": {
144668
+ "expectedBtsProceeds": 10000,
144669
+ "sellPriceInBts": 1000,
144670
+ "averageExecutionPriceInBts": null,
144671
+ "fillCount": 0,
144672
+ "fillStatus": "unfilled",
144673
+ "filledReceiveAmount": 0,
144674
+ "filledSellAmount": 0,
144675
+ "isFullyFilled": false,
144676
+ "lastFillAt": null,
144677
+ "orderId": null,
144678
+ "orderOpen": false,
144679
+ "placedAt": null,
144680
+ "priceInBts": 1000,
144681
+ "receiveAsset": {
144682
+ "id": "1.3.0",
144683
+ "precision": 5,
144684
+ "symbol": "BTS"
144685
+ },
144686
+ "receiveAmountRemaining": 10000,
144687
+ "sellAsset": {
144688
+ "id": "1.3.10",
144689
+ "precision": 5,
144690
+ "symbol": "HONEST.USD"
144691
+ },
144692
+ "sellAmountRemaining": 10,
144693
+ "targetReceiveAmount": 10000,
144694
+ "targetSellAmount": 10,
144695
+ "tx": null
144696
+ },
144697
+ "events": [
144698
+ {
144699
+ "at": "2026-08-16T21:16:41.587Z",
144700
+ "details": {
144701
+ "collateralAmount": 25000,
144702
+ "debtAmount": 10,
144703
+ "mpaAsset": "HONEST.USD",
144704
+ "sellPriceInBts": 1000
144705
+ },
144706
+ "type": "position-created"
144707
+ }
144708
+ ],
144709
+ "exit": {
144710
+ "averageExecutionPriceInBts": null,
144711
+ "fillCount": 0,
144712
+ "fillStatus": "unfilled",
144713
+ "filledReceiveAmount": 0,
144714
+ "filledSellAmount": 0,
144715
+ "isFullyFilled": false,
144716
+ "lastFillAt": null,
144717
+ "orderId": null,
144718
+ "orderOpen": false,
144719
+ "placedAt": null,
144720
+ "priceInBts": null,
144721
+ "receiveAsset": {
144722
+ "id": "1.3.10",
144723
+ "precision": 5,
144724
+ "symbol": "HONEST.USD"
144725
+ },
144726
+ "receiveAmountRemaining": 0,
144727
+ "sellAsset": {
144728
+ "id": "1.3.0",
144729
+ "precision": 5,
144730
+ "symbol": "BTS"
144731
+ },
144732
+ "sellAmountRemaining": 0,
144733
+ "targetReceiveAmount": 0,
144734
+ "targetSellAmount": 0,
144735
+ "tx": null,
144736
+ "amountToCover": null,
144737
+ "buyPriceInBts": null,
144738
+ "estimatedGrossPnlInBts": null,
144739
+ "maxBtsToSpend": null
144740
+ },
144741
+ "id": "pos_1786915001587_t1aq4cw3",
144742
+ "market": "HONEST.USD/BTS",
144743
+ "onChain": null,
144744
+ "pnl": {
144745
+ "averageEntryPriceInBts": null,
144746
+ "averageExitPriceInBts": null,
144747
+ "netBtsFlow": null,
144748
+ "realizedCoverAmount": 0,
144749
+ "realizedGrossPnlInBts": 0,
144750
+ "updatedAt": null
144751
+ },
144752
+ "strategy": "short-mpa-bts",
144753
+ "status": "planned",
144754
+ "updatedAt": "2026-08-16T21:16:41.587Z"
144755
+ },
144756
+ {
144757
+ "accountName": "alice",
144758
+ "assets": {
144759
+ "collateral": {
144760
+ "id": "1.3.0",
144761
+ "precision": 5,
144762
+ "symbol": "BTS"
144763
+ },
144764
+ "mpa": {
144765
+ "id": "1.3.10",
144766
+ "precision": 5,
144767
+ "symbol": "HONEST.USD"
144768
+ }
144769
+ },
144770
+ "collateral": {
144771
+ "amount": 25000,
144772
+ "asset": "BTS",
144773
+ "targetCollateralRatio": null
144774
+ },
144775
+ "createdAt": "2026-08-16T21:24:57.558Z",
144776
+ "debt": {
144777
+ "amount": 10,
144778
+ "asset": "HONEST.USD"
144779
+ },
144780
+ "entry": {
144781
+ "expectedBtsProceeds": 10000,
144782
+ "sellPriceInBts": 1000,
144783
+ "averageExecutionPriceInBts": null,
144784
+ "fillCount": 0,
144785
+ "fillStatus": "unfilled",
144786
+ "filledReceiveAmount": 0,
144787
+ "filledSellAmount": 0,
144788
+ "isFullyFilled": false,
144789
+ "lastFillAt": null,
144790
+ "orderId": null,
144791
+ "orderOpen": false,
144792
+ "placedAt": null,
144793
+ "priceInBts": 1000,
144794
+ "receiveAsset": {
144795
+ "id": "1.3.0",
144796
+ "precision": 5,
144797
+ "symbol": "BTS"
144798
+ },
144799
+ "receiveAmountRemaining": 10000,
144800
+ "sellAsset": {
144801
+ "id": "1.3.10",
144802
+ "precision": 5,
144803
+ "symbol": "HONEST.USD"
144804
+ },
144805
+ "sellAmountRemaining": 10,
144806
+ "targetReceiveAmount": 10000,
144807
+ "targetSellAmount": 10,
144808
+ "tx": null
144809
+ },
144810
+ "events": [
144811
+ {
144812
+ "at": "2026-08-16T21:24:57.558Z",
144813
+ "details": {
144814
+ "collateralAmount": 25000,
144815
+ "debtAmount": 10,
144816
+ "mpaAsset": "HONEST.USD",
144817
+ "sellPriceInBts": 1000
144818
+ },
144819
+ "type": "position-created"
144820
+ }
144821
+ ],
144822
+ "exit": {
144823
+ "averageExecutionPriceInBts": null,
144824
+ "fillCount": 0,
144825
+ "fillStatus": "unfilled",
144826
+ "filledReceiveAmount": 0,
144827
+ "filledSellAmount": 0,
144828
+ "isFullyFilled": false,
144829
+ "lastFillAt": null,
144830
+ "orderId": null,
144831
+ "orderOpen": false,
144832
+ "placedAt": null,
144833
+ "priceInBts": null,
144834
+ "receiveAsset": {
144835
+ "id": "1.3.10",
144836
+ "precision": 5,
144837
+ "symbol": "HONEST.USD"
144838
+ },
144839
+ "receiveAmountRemaining": 0,
144840
+ "sellAsset": {
144841
+ "id": "1.3.0",
144842
+ "precision": 5,
144843
+ "symbol": "BTS"
144844
+ },
144845
+ "sellAmountRemaining": 0,
144846
+ "targetReceiveAmount": 0,
144847
+ "targetSellAmount": 0,
144848
+ "tx": null,
144849
+ "amountToCover": null,
144850
+ "buyPriceInBts": null,
144851
+ "estimatedGrossPnlInBts": null,
144852
+ "maxBtsToSpend": null
144853
+ },
144854
+ "id": "pos_1786915497558_x83o66k6",
144855
+ "market": "HONEST.USD/BTS",
144856
+ "onChain": null,
144857
+ "pnl": {
144858
+ "averageEntryPriceInBts": null,
144859
+ "averageExitPriceInBts": null,
144860
+ "netBtsFlow": null,
144861
+ "realizedCoverAmount": 0,
144862
+ "realizedGrossPnlInBts": 0,
144863
+ "updatedAt": null
144864
+ },
144865
+ "strategy": "short-mpa-bts",
144866
+ "status": "planned",
144867
+ "updatedAt": "2026-08-16T21:24:57.558Z"
144868
+ },
144869
+ {
144870
+ "accountName": "alice",
144871
+ "assets": {
144872
+ "collateral": {
144873
+ "id": "1.3.0",
144874
+ "precision": 5,
144875
+ "symbol": "BTS"
144876
+ },
144877
+ "mpa": {
144878
+ "id": "1.3.10",
144879
+ "precision": 5,
144880
+ "symbol": "HONEST.USD"
144881
+ }
144882
+ },
144883
+ "collateral": {
144884
+ "amount": 25000,
144885
+ "asset": "BTS",
144886
+ "targetCollateralRatio": null
144887
+ },
144888
+ "createdAt": "2026-08-17T01:22:35.879Z",
144889
+ "debt": {
144890
+ "amount": 10,
144891
+ "asset": "HONEST.USD"
144892
+ },
144893
+ "entry": {
144894
+ "expectedBtsProceeds": 10000,
144895
+ "sellPriceInBts": 1000,
144896
+ "averageExecutionPriceInBts": null,
144897
+ "fillCount": 0,
144898
+ "fillStatus": "unfilled",
144899
+ "filledReceiveAmount": 0,
144900
+ "filledSellAmount": 0,
144901
+ "isFullyFilled": false,
144902
+ "lastFillAt": null,
144903
+ "orderId": null,
144904
+ "orderOpen": false,
144905
+ "placedAt": null,
144906
+ "priceInBts": 1000,
144907
+ "receiveAsset": {
144908
+ "id": "1.3.0",
144909
+ "precision": 5,
144910
+ "symbol": "BTS"
144911
+ },
144912
+ "receiveAmountRemaining": 10000,
144913
+ "sellAsset": {
144914
+ "id": "1.3.10",
144915
+ "precision": 5,
144916
+ "symbol": "HONEST.USD"
144917
+ },
144918
+ "sellAmountRemaining": 10,
144919
+ "targetReceiveAmount": 10000,
144920
+ "targetSellAmount": 10,
144921
+ "tx": null
144922
+ },
144923
+ "events": [
144924
+ {
144925
+ "at": "2026-08-17T01:22:35.879Z",
144926
+ "details": {
144927
+ "collateralAmount": 25000,
144928
+ "debtAmount": 10,
144929
+ "mpaAsset": "HONEST.USD",
144930
+ "sellPriceInBts": 1000
144931
+ },
144932
+ "type": "position-created"
144933
+ }
144934
+ ],
144935
+ "exit": {
144936
+ "averageExecutionPriceInBts": null,
144937
+ "fillCount": 0,
144938
+ "fillStatus": "unfilled",
144939
+ "filledReceiveAmount": 0,
144940
+ "filledSellAmount": 0,
144941
+ "isFullyFilled": false,
144942
+ "lastFillAt": null,
144943
+ "orderId": null,
144944
+ "orderOpen": false,
144945
+ "placedAt": null,
144946
+ "priceInBts": null,
144947
+ "receiveAsset": {
144948
+ "id": "1.3.10",
144949
+ "precision": 5,
144950
+ "symbol": "HONEST.USD"
144951
+ },
144952
+ "receiveAmountRemaining": 0,
144953
+ "sellAsset": {
144954
+ "id": "1.3.0",
144955
+ "precision": 5,
144956
+ "symbol": "BTS"
144957
+ },
144958
+ "sellAmountRemaining": 0,
144959
+ "targetReceiveAmount": 0,
144960
+ "targetSellAmount": 0,
144961
+ "tx": null,
144962
+ "amountToCover": null,
144963
+ "buyPriceInBts": null,
144964
+ "estimatedGrossPnlInBts": null,
144965
+ "maxBtsToSpend": null
144966
+ },
144967
+ "id": "pos_1786929755879_i1cgtxfw",
144968
+ "market": "HONEST.USD/BTS",
144969
+ "onChain": null,
144970
+ "pnl": {
144971
+ "averageEntryPriceInBts": null,
144972
+ "averageExitPriceInBts": null,
144973
+ "netBtsFlow": null,
144974
+ "realizedCoverAmount": 0,
144975
+ "realizedGrossPnlInBts": 0,
144976
+ "updatedAt": null
144977
+ },
144978
+ "strategy": "short-mpa-bts",
144979
+ "status": "planned",
144980
+ "updatedAt": "2026-08-17T01:22:35.879Z"
144981
+ },
144982
+ {
144983
+ "accountName": "alice",
144984
+ "assets": {
144985
+ "collateral": {
144986
+ "id": "1.3.0",
144987
+ "precision": 5,
144988
+ "symbol": "BTS"
144989
+ },
144990
+ "mpa": {
144991
+ "id": "1.3.10",
144992
+ "precision": 5,
144993
+ "symbol": "HONEST.USD"
144994
+ }
144995
+ },
144996
+ "collateral": {
144997
+ "amount": 25000,
144998
+ "asset": "BTS",
144999
+ "targetCollateralRatio": null
145000
+ },
145001
+ "createdAt": "2026-08-17T01:39:57.259Z",
145002
+ "debt": {
145003
+ "amount": 10,
145004
+ "asset": "HONEST.USD"
145005
+ },
145006
+ "entry": {
145007
+ "expectedBtsProceeds": 10000,
145008
+ "sellPriceInBts": 1000,
145009
+ "averageExecutionPriceInBts": null,
145010
+ "fillCount": 0,
145011
+ "fillStatus": "unfilled",
145012
+ "filledReceiveAmount": 0,
145013
+ "filledSellAmount": 0,
145014
+ "isFullyFilled": false,
145015
+ "lastFillAt": null,
145016
+ "orderId": null,
145017
+ "orderOpen": false,
145018
+ "placedAt": null,
145019
+ "priceInBts": 1000,
145020
+ "receiveAsset": {
145021
+ "id": "1.3.0",
145022
+ "precision": 5,
145023
+ "symbol": "BTS"
145024
+ },
145025
+ "receiveAmountRemaining": 10000,
145026
+ "sellAsset": {
145027
+ "id": "1.3.10",
145028
+ "precision": 5,
145029
+ "symbol": "HONEST.USD"
145030
+ },
145031
+ "sellAmountRemaining": 10,
145032
+ "targetReceiveAmount": 10000,
145033
+ "targetSellAmount": 10,
145034
+ "tx": null
145035
+ },
145036
+ "events": [
145037
+ {
145038
+ "at": "2026-08-17T01:39:57.259Z",
145039
+ "details": {
145040
+ "collateralAmount": 25000,
145041
+ "debtAmount": 10,
145042
+ "mpaAsset": "HONEST.USD",
145043
+ "sellPriceInBts": 1000
145044
+ },
145045
+ "type": "position-created"
145046
+ }
145047
+ ],
145048
+ "exit": {
145049
+ "averageExecutionPriceInBts": null,
145050
+ "fillCount": 0,
145051
+ "fillStatus": "unfilled",
145052
+ "filledReceiveAmount": 0,
145053
+ "filledSellAmount": 0,
145054
+ "isFullyFilled": false,
145055
+ "lastFillAt": null,
145056
+ "orderId": null,
145057
+ "orderOpen": false,
145058
+ "placedAt": null,
145059
+ "priceInBts": null,
145060
+ "receiveAsset": {
145061
+ "id": "1.3.10",
145062
+ "precision": 5,
145063
+ "symbol": "HONEST.USD"
145064
+ },
145065
+ "receiveAmountRemaining": 0,
145066
+ "sellAsset": {
145067
+ "id": "1.3.0",
145068
+ "precision": 5,
145069
+ "symbol": "BTS"
145070
+ },
145071
+ "sellAmountRemaining": 0,
145072
+ "targetReceiveAmount": 0,
145073
+ "targetSellAmount": 0,
145074
+ "tx": null,
145075
+ "amountToCover": null,
145076
+ "buyPriceInBts": null,
145077
+ "estimatedGrossPnlInBts": null,
145078
+ "maxBtsToSpend": null
145079
+ },
145080
+ "id": "pos_1786930797259_uum8w6nh",
145081
+ "market": "HONEST.USD/BTS",
145082
+ "onChain": null,
145083
+ "pnl": {
145084
+ "averageEntryPriceInBts": null,
145085
+ "averageExitPriceInBts": null,
145086
+ "netBtsFlow": null,
145087
+ "realizedCoverAmount": 0,
145088
+ "realizedGrossPnlInBts": 0,
145089
+ "updatedAt": null
145090
+ },
145091
+ "strategy": "short-mpa-bts",
145092
+ "status": "planned",
145093
+ "updatedAt": "2026-08-17T01:39:57.259Z"
145094
+ },
145095
+ {
145096
+ "accountName": "alice",
145097
+ "assets": {
145098
+ "collateral": {
145099
+ "id": "1.3.0",
145100
+ "precision": 5,
145101
+ "symbol": "BTS"
145102
+ },
145103
+ "mpa": {
145104
+ "id": "1.3.10",
145105
+ "precision": 5,
145106
+ "symbol": "HONEST.USD"
145107
+ }
145108
+ },
145109
+ "collateral": {
145110
+ "amount": 25000,
145111
+ "asset": "BTS",
145112
+ "targetCollateralRatio": null
145113
+ },
145114
+ "createdAt": "2026-08-17T01:42:44.725Z",
145115
+ "debt": {
145116
+ "amount": 10,
145117
+ "asset": "HONEST.USD"
145118
+ },
145119
+ "entry": {
145120
+ "expectedBtsProceeds": 10000,
145121
+ "sellPriceInBts": 1000,
145122
+ "averageExecutionPriceInBts": null,
145123
+ "fillCount": 0,
145124
+ "fillStatus": "unfilled",
145125
+ "filledReceiveAmount": 0,
145126
+ "filledSellAmount": 0,
145127
+ "isFullyFilled": false,
145128
+ "lastFillAt": null,
145129
+ "orderId": null,
145130
+ "orderOpen": false,
145131
+ "placedAt": null,
145132
+ "priceInBts": 1000,
145133
+ "receiveAsset": {
145134
+ "id": "1.3.0",
145135
+ "precision": 5,
145136
+ "symbol": "BTS"
145137
+ },
145138
+ "receiveAmountRemaining": 10000,
145139
+ "sellAsset": {
145140
+ "id": "1.3.10",
145141
+ "precision": 5,
145142
+ "symbol": "HONEST.USD"
145143
+ },
145144
+ "sellAmountRemaining": 10,
145145
+ "targetReceiveAmount": 10000,
145146
+ "targetSellAmount": 10,
145147
+ "tx": null
145148
+ },
145149
+ "events": [
145150
+ {
145151
+ "at": "2026-08-17T01:42:44.725Z",
145152
+ "details": {
145153
+ "collateralAmount": 25000,
145154
+ "debtAmount": 10,
145155
+ "mpaAsset": "HONEST.USD",
145156
+ "sellPriceInBts": 1000
145157
+ },
145158
+ "type": "position-created"
145159
+ }
145160
+ ],
145161
+ "exit": {
145162
+ "averageExecutionPriceInBts": null,
145163
+ "fillCount": 0,
145164
+ "fillStatus": "unfilled",
145165
+ "filledReceiveAmount": 0,
145166
+ "filledSellAmount": 0,
145167
+ "isFullyFilled": false,
145168
+ "lastFillAt": null,
145169
+ "orderId": null,
145170
+ "orderOpen": false,
145171
+ "placedAt": null,
145172
+ "priceInBts": null,
145173
+ "receiveAsset": {
145174
+ "id": "1.3.10",
145175
+ "precision": 5,
145176
+ "symbol": "HONEST.USD"
145177
+ },
145178
+ "receiveAmountRemaining": 0,
145179
+ "sellAsset": {
145180
+ "id": "1.3.0",
145181
+ "precision": 5,
145182
+ "symbol": "BTS"
145183
+ },
145184
+ "sellAmountRemaining": 0,
145185
+ "targetReceiveAmount": 0,
145186
+ "targetSellAmount": 0,
145187
+ "tx": null,
145188
+ "amountToCover": null,
145189
+ "buyPriceInBts": null,
145190
+ "estimatedGrossPnlInBts": null,
145191
+ "maxBtsToSpend": null
145192
+ },
145193
+ "id": "pos_1786930964725_krshnltq",
145194
+ "market": "HONEST.USD/BTS",
145195
+ "onChain": null,
145196
+ "pnl": {
145197
+ "averageEntryPriceInBts": null,
145198
+ "averageExitPriceInBts": null,
145199
+ "netBtsFlow": null,
145200
+ "realizedCoverAmount": 0,
145201
+ "realizedGrossPnlInBts": 0,
145202
+ "updatedAt": null
145203
+ },
145204
+ "strategy": "short-mpa-bts",
145205
+ "status": "planned",
145206
+ "updatedAt": "2026-08-17T01:42:44.725Z"
145207
+ },
145208
+ {
145209
+ "accountName": "alice",
145210
+ "assets": {
145211
+ "collateral": {
145212
+ "id": "1.3.0",
145213
+ "precision": 5,
145214
+ "symbol": "BTS"
145215
+ },
145216
+ "mpa": {
145217
+ "id": "1.3.10",
145218
+ "precision": 5,
145219
+ "symbol": "HONEST.USD"
145220
+ }
145221
+ },
145222
+ "collateral": {
145223
+ "amount": 25000,
145224
+ "asset": "BTS",
145225
+ "targetCollateralRatio": null
145226
+ },
145227
+ "createdAt": "2026-08-17T01:47:54.978Z",
145228
+ "debt": {
145229
+ "amount": 10,
145230
+ "asset": "HONEST.USD"
145231
+ },
145232
+ "entry": {
145233
+ "expectedBtsProceeds": 10000,
145234
+ "sellPriceInBts": 1000,
145235
+ "averageExecutionPriceInBts": null,
145236
+ "fillCount": 0,
145237
+ "fillStatus": "unfilled",
145238
+ "filledReceiveAmount": 0,
145239
+ "filledSellAmount": 0,
145240
+ "isFullyFilled": false,
145241
+ "lastFillAt": null,
145242
+ "orderId": null,
145243
+ "orderOpen": false,
145244
+ "placedAt": null,
145245
+ "priceInBts": 1000,
145246
+ "receiveAsset": {
145247
+ "id": "1.3.0",
145248
+ "precision": 5,
145249
+ "symbol": "BTS"
145250
+ },
145251
+ "receiveAmountRemaining": 10000,
145252
+ "sellAsset": {
145253
+ "id": "1.3.10",
145254
+ "precision": 5,
145255
+ "symbol": "HONEST.USD"
145256
+ },
145257
+ "sellAmountRemaining": 10,
145258
+ "targetReceiveAmount": 10000,
145259
+ "targetSellAmount": 10,
145260
+ "tx": null
145261
+ },
145262
+ "events": [
145263
+ {
145264
+ "at": "2026-08-17T01:47:54.978Z",
145265
+ "details": {
145266
+ "collateralAmount": 25000,
145267
+ "debtAmount": 10,
145268
+ "mpaAsset": "HONEST.USD",
145269
+ "sellPriceInBts": 1000
145270
+ },
145271
+ "type": "position-created"
145272
+ }
145273
+ ],
145274
+ "exit": {
145275
+ "averageExecutionPriceInBts": null,
145276
+ "fillCount": 0,
145277
+ "fillStatus": "unfilled",
145278
+ "filledReceiveAmount": 0,
145279
+ "filledSellAmount": 0,
145280
+ "isFullyFilled": false,
145281
+ "lastFillAt": null,
145282
+ "orderId": null,
145283
+ "orderOpen": false,
145284
+ "placedAt": null,
145285
+ "priceInBts": null,
145286
+ "receiveAsset": {
145287
+ "id": "1.3.10",
145288
+ "precision": 5,
145289
+ "symbol": "HONEST.USD"
145290
+ },
145291
+ "receiveAmountRemaining": 0,
145292
+ "sellAsset": {
145293
+ "id": "1.3.0",
145294
+ "precision": 5,
145295
+ "symbol": "BTS"
145296
+ },
145297
+ "sellAmountRemaining": 0,
145298
+ "targetReceiveAmount": 0,
145299
+ "targetSellAmount": 0,
145300
+ "tx": null,
145301
+ "amountToCover": null,
145302
+ "buyPriceInBts": null,
145303
+ "estimatedGrossPnlInBts": null,
145304
+ "maxBtsToSpend": null
145305
+ },
145306
+ "id": "pos_1786931274978_cc8vmb7i",
145307
+ "market": "HONEST.USD/BTS",
145308
+ "onChain": null,
145309
+ "pnl": {
145310
+ "averageEntryPriceInBts": null,
145311
+ "averageExitPriceInBts": null,
145312
+ "netBtsFlow": null,
145313
+ "realizedCoverAmount": 0,
145314
+ "realizedGrossPnlInBts": 0,
145315
+ "updatedAt": null
145316
+ },
145317
+ "strategy": "short-mpa-bts",
145318
+ "status": "planned",
145319
+ "updatedAt": "2026-08-17T01:47:54.978Z"
145320
+ },
145321
+ {
145322
+ "accountName": "alice",
145323
+ "assets": {
145324
+ "collateral": {
145325
+ "id": "1.3.0",
145326
+ "precision": 5,
145327
+ "symbol": "BTS"
145328
+ },
145329
+ "mpa": {
145330
+ "id": "1.3.10",
145331
+ "precision": 5,
145332
+ "symbol": "HONEST.USD"
145333
+ }
145334
+ },
145335
+ "collateral": {
145336
+ "amount": 25000,
145337
+ "asset": "BTS",
145338
+ "targetCollateralRatio": null
145339
+ },
145340
+ "createdAt": "2026-08-17T11:23:07.603Z",
145341
+ "debt": {
145342
+ "amount": 10,
145343
+ "asset": "HONEST.USD"
145344
+ },
145345
+ "entry": {
145346
+ "expectedBtsProceeds": 10000,
145347
+ "sellPriceInBts": 1000,
145348
+ "averageExecutionPriceInBts": null,
145349
+ "fillCount": 0,
145350
+ "fillStatus": "unfilled",
145351
+ "filledReceiveAmount": 0,
145352
+ "filledSellAmount": 0,
145353
+ "isFullyFilled": false,
145354
+ "lastFillAt": null,
145355
+ "orderId": null,
145356
+ "orderOpen": false,
145357
+ "placedAt": null,
145358
+ "priceInBts": 1000,
145359
+ "receiveAsset": {
145360
+ "id": "1.3.0",
145361
+ "precision": 5,
145362
+ "symbol": "BTS"
145363
+ },
145364
+ "receiveAmountRemaining": 10000,
145365
+ "sellAsset": {
145366
+ "id": "1.3.10",
145367
+ "precision": 5,
145368
+ "symbol": "HONEST.USD"
145369
+ },
145370
+ "sellAmountRemaining": 10,
145371
+ "targetReceiveAmount": 10000,
145372
+ "targetSellAmount": 10,
145373
+ "tx": null
145374
+ },
145375
+ "events": [
145376
+ {
145377
+ "at": "2026-08-17T11:23:07.603Z",
145378
+ "details": {
145379
+ "collateralAmount": 25000,
145380
+ "debtAmount": 10,
145381
+ "mpaAsset": "HONEST.USD",
145382
+ "sellPriceInBts": 1000
145383
+ },
145384
+ "type": "position-created"
145385
+ }
145386
+ ],
145387
+ "exit": {
145388
+ "averageExecutionPriceInBts": null,
145389
+ "fillCount": 0,
145390
+ "fillStatus": "unfilled",
145391
+ "filledReceiveAmount": 0,
145392
+ "filledSellAmount": 0,
145393
+ "isFullyFilled": false,
145394
+ "lastFillAt": null,
145395
+ "orderId": null,
145396
+ "orderOpen": false,
145397
+ "placedAt": null,
145398
+ "priceInBts": null,
145399
+ "receiveAsset": {
145400
+ "id": "1.3.10",
145401
+ "precision": 5,
145402
+ "symbol": "HONEST.USD"
145403
+ },
145404
+ "receiveAmountRemaining": 0,
145405
+ "sellAsset": {
145406
+ "id": "1.3.0",
145407
+ "precision": 5,
145408
+ "symbol": "BTS"
145409
+ },
145410
+ "sellAmountRemaining": 0,
145411
+ "targetReceiveAmount": 0,
145412
+ "targetSellAmount": 0,
145413
+ "tx": null,
145414
+ "amountToCover": null,
145415
+ "buyPriceInBts": null,
145416
+ "estimatedGrossPnlInBts": null,
145417
+ "maxBtsToSpend": null
145418
+ },
145419
+ "id": "pos_1786965787603_fea2s5v2",
145420
+ "market": "HONEST.USD/BTS",
145421
+ "onChain": null,
145422
+ "pnl": {
145423
+ "averageEntryPriceInBts": null,
145424
+ "averageExitPriceInBts": null,
145425
+ "netBtsFlow": null,
145426
+ "realizedCoverAmount": 0,
145427
+ "realizedGrossPnlInBts": 0,
145428
+ "updatedAt": null
145429
+ },
145430
+ "strategy": "short-mpa-bts",
145431
+ "status": "planned",
145432
+ "updatedAt": "2026-08-17T11:23:07.603Z"
145433
+ },
145434
+ {
145435
+ "accountName": "alice",
145436
+ "assets": {
145437
+ "collateral": {
145438
+ "id": "1.3.0",
145439
+ "precision": 5,
145440
+ "symbol": "BTS"
145441
+ },
145442
+ "mpa": {
145443
+ "id": "1.3.10",
145444
+ "precision": 5,
145445
+ "symbol": "HONEST.USD"
145446
+ }
145447
+ },
145448
+ "collateral": {
145449
+ "amount": 25000,
145450
+ "asset": "BTS",
145451
+ "targetCollateralRatio": null
145452
+ },
145453
+ "createdAt": "2026-08-17T11:24:14.686Z",
145454
+ "debt": {
145455
+ "amount": 10,
145456
+ "asset": "HONEST.USD"
145457
+ },
145458
+ "entry": {
145459
+ "expectedBtsProceeds": 10000,
145460
+ "sellPriceInBts": 1000,
145461
+ "averageExecutionPriceInBts": null,
145462
+ "fillCount": 0,
145463
+ "fillStatus": "unfilled",
145464
+ "filledReceiveAmount": 0,
145465
+ "filledSellAmount": 0,
145466
+ "isFullyFilled": false,
145467
+ "lastFillAt": null,
145468
+ "orderId": null,
145469
+ "orderOpen": false,
145470
+ "placedAt": null,
145471
+ "priceInBts": 1000,
145472
+ "receiveAsset": {
145473
+ "id": "1.3.0",
145474
+ "precision": 5,
145475
+ "symbol": "BTS"
145476
+ },
145477
+ "receiveAmountRemaining": 10000,
145478
+ "sellAsset": {
145479
+ "id": "1.3.10",
145480
+ "precision": 5,
145481
+ "symbol": "HONEST.USD"
145482
+ },
145483
+ "sellAmountRemaining": 10,
145484
+ "targetReceiveAmount": 10000,
145485
+ "targetSellAmount": 10,
145486
+ "tx": null
145487
+ },
145488
+ "events": [
145489
+ {
145490
+ "at": "2026-08-17T11:24:14.686Z",
145491
+ "details": {
145492
+ "collateralAmount": 25000,
145493
+ "debtAmount": 10,
145494
+ "mpaAsset": "HONEST.USD",
145495
+ "sellPriceInBts": 1000
145496
+ },
145497
+ "type": "position-created"
145498
+ }
145499
+ ],
145500
+ "exit": {
145501
+ "averageExecutionPriceInBts": null,
145502
+ "fillCount": 0,
145503
+ "fillStatus": "unfilled",
145504
+ "filledReceiveAmount": 0,
145505
+ "filledSellAmount": 0,
145506
+ "isFullyFilled": false,
145507
+ "lastFillAt": null,
145508
+ "orderId": null,
145509
+ "orderOpen": false,
145510
+ "placedAt": null,
145511
+ "priceInBts": null,
145512
+ "receiveAsset": {
145513
+ "id": "1.3.10",
145514
+ "precision": 5,
145515
+ "symbol": "HONEST.USD"
145516
+ },
145517
+ "receiveAmountRemaining": 0,
145518
+ "sellAsset": {
145519
+ "id": "1.3.0",
145520
+ "precision": 5,
145521
+ "symbol": "BTS"
145522
+ },
145523
+ "sellAmountRemaining": 0,
145524
+ "targetReceiveAmount": 0,
145525
+ "targetSellAmount": 0,
145526
+ "tx": null,
145527
+ "amountToCover": null,
145528
+ "buyPriceInBts": null,
145529
+ "estimatedGrossPnlInBts": null,
145530
+ "maxBtsToSpend": null
145531
+ },
145532
+ "id": "pos_1786965854687_o2k3na6s",
145533
+ "market": "HONEST.USD/BTS",
145534
+ "onChain": null,
145535
+ "pnl": {
145536
+ "averageEntryPriceInBts": null,
145537
+ "averageExitPriceInBts": null,
145538
+ "netBtsFlow": null,
145539
+ "realizedCoverAmount": 0,
145540
+ "realizedGrossPnlInBts": 0,
145541
+ "updatedAt": null
145542
+ },
145543
+ "strategy": "short-mpa-bts",
145544
+ "status": "planned",
145545
+ "updatedAt": "2026-08-17T11:24:14.686Z"
145546
+ },
145547
+ {
145548
+ "accountName": "alice",
145549
+ "assets": {
145550
+ "collateral": {
145551
+ "id": "1.3.0",
145552
+ "precision": 5,
145553
+ "symbol": "BTS"
145554
+ },
145555
+ "mpa": {
145556
+ "id": "1.3.10",
145557
+ "precision": 5,
145558
+ "symbol": "HONEST.USD"
145559
+ }
145560
+ },
145561
+ "collateral": {
145562
+ "amount": 25000,
145563
+ "asset": "BTS",
145564
+ "targetCollateralRatio": null
145565
+ },
145566
+ "createdAt": "2026-08-17T11:25:16.627Z",
145567
+ "debt": {
145568
+ "amount": 10,
145569
+ "asset": "HONEST.USD"
145570
+ },
145571
+ "entry": {
145572
+ "expectedBtsProceeds": 10000,
145573
+ "sellPriceInBts": 1000,
145574
+ "averageExecutionPriceInBts": null,
145575
+ "fillCount": 0,
145576
+ "fillStatus": "unfilled",
145577
+ "filledReceiveAmount": 0,
145578
+ "filledSellAmount": 0,
145579
+ "isFullyFilled": false,
145580
+ "lastFillAt": null,
145581
+ "orderId": null,
145582
+ "orderOpen": false,
145583
+ "placedAt": null,
145584
+ "priceInBts": 1000,
145585
+ "receiveAsset": {
145586
+ "id": "1.3.0",
145587
+ "precision": 5,
145588
+ "symbol": "BTS"
145589
+ },
145590
+ "receiveAmountRemaining": 10000,
145591
+ "sellAsset": {
145592
+ "id": "1.3.10",
145593
+ "precision": 5,
145594
+ "symbol": "HONEST.USD"
145595
+ },
145596
+ "sellAmountRemaining": 10,
145597
+ "targetReceiveAmount": 10000,
145598
+ "targetSellAmount": 10,
145599
+ "tx": null
145600
+ },
145601
+ "events": [
145602
+ {
145603
+ "at": "2026-08-17T11:25:16.627Z",
145604
+ "details": {
145605
+ "collateralAmount": 25000,
145606
+ "debtAmount": 10,
145607
+ "mpaAsset": "HONEST.USD",
145608
+ "sellPriceInBts": 1000
145609
+ },
145610
+ "type": "position-created"
145611
+ }
145612
+ ],
145613
+ "exit": {
145614
+ "averageExecutionPriceInBts": null,
145615
+ "fillCount": 0,
145616
+ "fillStatus": "unfilled",
145617
+ "filledReceiveAmount": 0,
145618
+ "filledSellAmount": 0,
145619
+ "isFullyFilled": false,
145620
+ "lastFillAt": null,
145621
+ "orderId": null,
145622
+ "orderOpen": false,
145623
+ "placedAt": null,
145624
+ "priceInBts": null,
145625
+ "receiveAsset": {
145626
+ "id": "1.3.10",
145627
+ "precision": 5,
145628
+ "symbol": "HONEST.USD"
145629
+ },
145630
+ "receiveAmountRemaining": 0,
145631
+ "sellAsset": {
145632
+ "id": "1.3.0",
145633
+ "precision": 5,
145634
+ "symbol": "BTS"
145635
+ },
145636
+ "sellAmountRemaining": 0,
145637
+ "targetReceiveAmount": 0,
145638
+ "targetSellAmount": 0,
145639
+ "tx": null,
145640
+ "amountToCover": null,
145641
+ "buyPriceInBts": null,
145642
+ "estimatedGrossPnlInBts": null,
145643
+ "maxBtsToSpend": null
145644
+ },
145645
+ "id": "pos_1786965916627_tpgtjqbp",
145646
+ "market": "HONEST.USD/BTS",
145647
+ "onChain": null,
145648
+ "pnl": {
145649
+ "averageEntryPriceInBts": null,
145650
+ "averageExitPriceInBts": null,
145651
+ "netBtsFlow": null,
145652
+ "realizedCoverAmount": 0,
145653
+ "realizedGrossPnlInBts": 0,
145654
+ "updatedAt": null
145655
+ },
145656
+ "strategy": "short-mpa-bts",
145657
+ "status": "planned",
145658
+ "updatedAt": "2026-08-17T11:25:16.627Z"
145659
+ },
145660
+ {
145661
+ "accountName": "alice",
145662
+ "assets": {
145663
+ "collateral": {
145664
+ "id": "1.3.0",
145665
+ "precision": 5,
145666
+ "symbol": "BTS"
145667
+ },
145668
+ "mpa": {
145669
+ "id": "1.3.10",
145670
+ "precision": 5,
145671
+ "symbol": "HONEST.USD"
145672
+ }
145673
+ },
145674
+ "collateral": {
145675
+ "amount": 25000,
145676
+ "asset": "BTS",
145677
+ "targetCollateralRatio": null
145678
+ },
145679
+ "createdAt": "2026-08-17T11:26:16.818Z",
145680
+ "debt": {
145681
+ "amount": 10,
145682
+ "asset": "HONEST.USD"
145683
+ },
145684
+ "entry": {
145685
+ "expectedBtsProceeds": 10000,
145686
+ "sellPriceInBts": 1000,
145687
+ "averageExecutionPriceInBts": null,
145688
+ "fillCount": 0,
145689
+ "fillStatus": "unfilled",
145690
+ "filledReceiveAmount": 0,
145691
+ "filledSellAmount": 0,
145692
+ "isFullyFilled": false,
145693
+ "lastFillAt": null,
145694
+ "orderId": null,
145695
+ "orderOpen": false,
145696
+ "placedAt": null,
145697
+ "priceInBts": 1000,
145698
+ "receiveAsset": {
145699
+ "id": "1.3.0",
145700
+ "precision": 5,
145701
+ "symbol": "BTS"
145702
+ },
145703
+ "receiveAmountRemaining": 10000,
145704
+ "sellAsset": {
145705
+ "id": "1.3.10",
145706
+ "precision": 5,
145707
+ "symbol": "HONEST.USD"
145708
+ },
145709
+ "sellAmountRemaining": 10,
145710
+ "targetReceiveAmount": 10000,
145711
+ "targetSellAmount": 10,
145712
+ "tx": null
145713
+ },
145714
+ "events": [
145715
+ {
145716
+ "at": "2026-08-17T11:26:16.818Z",
145717
+ "details": {
145718
+ "collateralAmount": 25000,
145719
+ "debtAmount": 10,
145720
+ "mpaAsset": "HONEST.USD",
145721
+ "sellPriceInBts": 1000
145722
+ },
145723
+ "type": "position-created"
145724
+ }
145725
+ ],
145726
+ "exit": {
145727
+ "averageExecutionPriceInBts": null,
145728
+ "fillCount": 0,
145729
+ "fillStatus": "unfilled",
145730
+ "filledReceiveAmount": 0,
145731
+ "filledSellAmount": 0,
145732
+ "isFullyFilled": false,
145733
+ "lastFillAt": null,
145734
+ "orderId": null,
145735
+ "orderOpen": false,
145736
+ "placedAt": null,
145737
+ "priceInBts": null,
145738
+ "receiveAsset": {
145739
+ "id": "1.3.10",
145740
+ "precision": 5,
145741
+ "symbol": "HONEST.USD"
145742
+ },
145743
+ "receiveAmountRemaining": 0,
145744
+ "sellAsset": {
145745
+ "id": "1.3.0",
145746
+ "precision": 5,
145747
+ "symbol": "BTS"
145748
+ },
145749
+ "sellAmountRemaining": 0,
145750
+ "targetReceiveAmount": 0,
145751
+ "targetSellAmount": 0,
145752
+ "tx": null,
145753
+ "amountToCover": null,
145754
+ "buyPriceInBts": null,
145755
+ "estimatedGrossPnlInBts": null,
145756
+ "maxBtsToSpend": null
145757
+ },
145758
+ "id": "pos_1786965976818_xm2mvq8w",
145759
+ "market": "HONEST.USD/BTS",
145760
+ "onChain": null,
145761
+ "pnl": {
145762
+ "averageEntryPriceInBts": null,
145763
+ "averageExitPriceInBts": null,
145764
+ "netBtsFlow": null,
145765
+ "realizedCoverAmount": 0,
145766
+ "realizedGrossPnlInBts": 0,
145767
+ "updatedAt": null
145768
+ },
145769
+ "strategy": "short-mpa-bts",
145770
+ "status": "planned",
145771
+ "updatedAt": "2026-08-17T11:26:16.818Z"
145772
+ },
145773
+ {
145774
+ "accountName": "alice",
145775
+ "assets": {
145776
+ "collateral": {
145777
+ "id": "1.3.0",
145778
+ "precision": 5,
145779
+ "symbol": "BTS"
145780
+ },
145781
+ "mpa": {
145782
+ "id": "1.3.10",
145783
+ "precision": 5,
145784
+ "symbol": "HONEST.USD"
145785
+ }
145786
+ },
145787
+ "collateral": {
145788
+ "amount": 25000,
145789
+ "asset": "BTS",
145790
+ "targetCollateralRatio": null
145791
+ },
145792
+ "createdAt": "2026-08-17T11:27:16.303Z",
145793
+ "debt": {
145794
+ "amount": 10,
145795
+ "asset": "HONEST.USD"
145796
+ },
145797
+ "entry": {
145798
+ "expectedBtsProceeds": 10000,
145799
+ "sellPriceInBts": 1000,
145800
+ "averageExecutionPriceInBts": null,
145801
+ "fillCount": 0,
145802
+ "fillStatus": "unfilled",
145803
+ "filledReceiveAmount": 0,
145804
+ "filledSellAmount": 0,
145805
+ "isFullyFilled": false,
145806
+ "lastFillAt": null,
145807
+ "orderId": null,
145808
+ "orderOpen": false,
145809
+ "placedAt": null,
145810
+ "priceInBts": 1000,
145811
+ "receiveAsset": {
145812
+ "id": "1.3.0",
145813
+ "precision": 5,
145814
+ "symbol": "BTS"
145815
+ },
145816
+ "receiveAmountRemaining": 10000,
145817
+ "sellAsset": {
145818
+ "id": "1.3.10",
145819
+ "precision": 5,
145820
+ "symbol": "HONEST.USD"
145821
+ },
145822
+ "sellAmountRemaining": 10,
145823
+ "targetReceiveAmount": 10000,
145824
+ "targetSellAmount": 10,
145825
+ "tx": null
145826
+ },
145827
+ "events": [
145828
+ {
145829
+ "at": "2026-08-17T11:27:16.303Z",
145830
+ "details": {
145831
+ "collateralAmount": 25000,
145832
+ "debtAmount": 10,
145833
+ "mpaAsset": "HONEST.USD",
145834
+ "sellPriceInBts": 1000
145835
+ },
145836
+ "type": "position-created"
145837
+ }
145838
+ ],
145839
+ "exit": {
145840
+ "averageExecutionPriceInBts": null,
145841
+ "fillCount": 0,
145842
+ "fillStatus": "unfilled",
145843
+ "filledReceiveAmount": 0,
145844
+ "filledSellAmount": 0,
145845
+ "isFullyFilled": false,
145846
+ "lastFillAt": null,
145847
+ "orderId": null,
145848
+ "orderOpen": false,
145849
+ "placedAt": null,
145850
+ "priceInBts": null,
145851
+ "receiveAsset": {
145852
+ "id": "1.3.10",
145853
+ "precision": 5,
145854
+ "symbol": "HONEST.USD"
145855
+ },
145856
+ "receiveAmountRemaining": 0,
145857
+ "sellAsset": {
145858
+ "id": "1.3.0",
145859
+ "precision": 5,
145860
+ "symbol": "BTS"
145861
+ },
145862
+ "sellAmountRemaining": 0,
145863
+ "targetReceiveAmount": 0,
145864
+ "targetSellAmount": 0,
145865
+ "tx": null,
145866
+ "amountToCover": null,
145867
+ "buyPriceInBts": null,
145868
+ "estimatedGrossPnlInBts": null,
145869
+ "maxBtsToSpend": null
145870
+ },
145871
+ "id": "pos_1786966036303_rjncmsix",
145872
+ "market": "HONEST.USD/BTS",
145873
+ "onChain": null,
145874
+ "pnl": {
145875
+ "averageEntryPriceInBts": null,
145876
+ "averageExitPriceInBts": null,
145877
+ "netBtsFlow": null,
145878
+ "realizedCoverAmount": 0,
145879
+ "realizedGrossPnlInBts": 0,
145880
+ "updatedAt": null
145881
+ },
145882
+ "strategy": "short-mpa-bts",
145883
+ "status": "planned",
145884
+ "updatedAt": "2026-08-17T11:27:16.303Z"
145885
+ },
145886
+ {
145887
+ "accountName": "alice",
145888
+ "assets": {
145889
+ "collateral": {
145890
+ "id": "1.3.0",
145891
+ "precision": 5,
145892
+ "symbol": "BTS"
145893
+ },
145894
+ "mpa": {
145895
+ "id": "1.3.10",
145896
+ "precision": 5,
145897
+ "symbol": "HONEST.USD"
145898
+ }
145899
+ },
145900
+ "collateral": {
145901
+ "amount": 25000,
145902
+ "asset": "BTS",
145903
+ "targetCollateralRatio": null
145904
+ },
145905
+ "createdAt": "2026-08-17T11:28:20.340Z",
145906
+ "debt": {
145907
+ "amount": 10,
145908
+ "asset": "HONEST.USD"
145909
+ },
145910
+ "entry": {
145911
+ "expectedBtsProceeds": 10000,
145912
+ "sellPriceInBts": 1000,
145913
+ "averageExecutionPriceInBts": null,
145914
+ "fillCount": 0,
145915
+ "fillStatus": "unfilled",
145916
+ "filledReceiveAmount": 0,
145917
+ "filledSellAmount": 0,
145918
+ "isFullyFilled": false,
145919
+ "lastFillAt": null,
145920
+ "orderId": null,
145921
+ "orderOpen": false,
145922
+ "placedAt": null,
145923
+ "priceInBts": 1000,
145924
+ "receiveAsset": {
145925
+ "id": "1.3.0",
145926
+ "precision": 5,
145927
+ "symbol": "BTS"
145928
+ },
145929
+ "receiveAmountRemaining": 10000,
145930
+ "sellAsset": {
145931
+ "id": "1.3.10",
145932
+ "precision": 5,
145933
+ "symbol": "HONEST.USD"
145934
+ },
145935
+ "sellAmountRemaining": 10,
145936
+ "targetReceiveAmount": 10000,
145937
+ "targetSellAmount": 10,
145938
+ "tx": null
145939
+ },
145940
+ "events": [
145941
+ {
145942
+ "at": "2026-08-17T11:28:20.340Z",
145943
+ "details": {
145944
+ "collateralAmount": 25000,
145945
+ "debtAmount": 10,
145946
+ "mpaAsset": "HONEST.USD",
145947
+ "sellPriceInBts": 1000
145948
+ },
145949
+ "type": "position-created"
145950
+ }
145951
+ ],
145952
+ "exit": {
145953
+ "averageExecutionPriceInBts": null,
145954
+ "fillCount": 0,
145955
+ "fillStatus": "unfilled",
145956
+ "filledReceiveAmount": 0,
145957
+ "filledSellAmount": 0,
145958
+ "isFullyFilled": false,
145959
+ "lastFillAt": null,
145960
+ "orderId": null,
145961
+ "orderOpen": false,
145962
+ "placedAt": null,
145963
+ "priceInBts": null,
145964
+ "receiveAsset": {
145965
+ "id": "1.3.10",
145966
+ "precision": 5,
145967
+ "symbol": "HONEST.USD"
145968
+ },
145969
+ "receiveAmountRemaining": 0,
145970
+ "sellAsset": {
145971
+ "id": "1.3.0",
145972
+ "precision": 5,
145973
+ "symbol": "BTS"
145974
+ },
145975
+ "sellAmountRemaining": 0,
145976
+ "targetReceiveAmount": 0,
145977
+ "targetSellAmount": 0,
145978
+ "tx": null,
145979
+ "amountToCover": null,
145980
+ "buyPriceInBts": null,
145981
+ "estimatedGrossPnlInBts": null,
145982
+ "maxBtsToSpend": null
145983
+ },
145984
+ "id": "pos_1786966100341_vsip2dr8",
145985
+ "market": "HONEST.USD/BTS",
145986
+ "onChain": null,
145987
+ "pnl": {
145988
+ "averageEntryPriceInBts": null,
145989
+ "averageExitPriceInBts": null,
145990
+ "netBtsFlow": null,
145991
+ "realizedCoverAmount": 0,
145992
+ "realizedGrossPnlInBts": 0,
145993
+ "updatedAt": null
145994
+ },
145995
+ "strategy": "short-mpa-bts",
145996
+ "status": "planned",
145997
+ "updatedAt": "2026-08-17T11:28:20.340Z"
145998
+ },
145999
+ {
146000
+ "accountName": "alice",
146001
+ "assets": {
146002
+ "collateral": {
146003
+ "id": "1.3.0",
146004
+ "precision": 5,
146005
+ "symbol": "BTS"
146006
+ },
146007
+ "mpa": {
146008
+ "id": "1.3.10",
146009
+ "precision": 5,
146010
+ "symbol": "HONEST.USD"
146011
+ }
146012
+ },
146013
+ "collateral": {
146014
+ "amount": 25000,
146015
+ "asset": "BTS",
146016
+ "targetCollateralRatio": null
146017
+ },
146018
+ "createdAt": "2026-08-17T11:29:32.967Z",
146019
+ "debt": {
146020
+ "amount": 10,
146021
+ "asset": "HONEST.USD"
146022
+ },
146023
+ "entry": {
146024
+ "expectedBtsProceeds": 10000,
146025
+ "sellPriceInBts": 1000,
146026
+ "averageExecutionPriceInBts": null,
146027
+ "fillCount": 0,
146028
+ "fillStatus": "unfilled",
146029
+ "filledReceiveAmount": 0,
146030
+ "filledSellAmount": 0,
146031
+ "isFullyFilled": false,
146032
+ "lastFillAt": null,
146033
+ "orderId": null,
146034
+ "orderOpen": false,
146035
+ "placedAt": null,
146036
+ "priceInBts": 1000,
146037
+ "receiveAsset": {
146038
+ "id": "1.3.0",
146039
+ "precision": 5,
146040
+ "symbol": "BTS"
146041
+ },
146042
+ "receiveAmountRemaining": 10000,
146043
+ "sellAsset": {
146044
+ "id": "1.3.10",
146045
+ "precision": 5,
146046
+ "symbol": "HONEST.USD"
146047
+ },
146048
+ "sellAmountRemaining": 10,
146049
+ "targetReceiveAmount": 10000,
146050
+ "targetSellAmount": 10,
146051
+ "tx": null
146052
+ },
146053
+ "events": [
146054
+ {
146055
+ "at": "2026-08-17T11:29:32.967Z",
146056
+ "details": {
146057
+ "collateralAmount": 25000,
146058
+ "debtAmount": 10,
146059
+ "mpaAsset": "HONEST.USD",
146060
+ "sellPriceInBts": 1000
146061
+ },
146062
+ "type": "position-created"
146063
+ }
146064
+ ],
146065
+ "exit": {
146066
+ "averageExecutionPriceInBts": null,
146067
+ "fillCount": 0,
146068
+ "fillStatus": "unfilled",
146069
+ "filledReceiveAmount": 0,
146070
+ "filledSellAmount": 0,
146071
+ "isFullyFilled": false,
146072
+ "lastFillAt": null,
146073
+ "orderId": null,
146074
+ "orderOpen": false,
146075
+ "placedAt": null,
146076
+ "priceInBts": null,
146077
+ "receiveAsset": {
146078
+ "id": "1.3.10",
146079
+ "precision": 5,
146080
+ "symbol": "HONEST.USD"
146081
+ },
146082
+ "receiveAmountRemaining": 0,
146083
+ "sellAsset": {
146084
+ "id": "1.3.0",
146085
+ "precision": 5,
146086
+ "symbol": "BTS"
146087
+ },
146088
+ "sellAmountRemaining": 0,
146089
+ "targetReceiveAmount": 0,
146090
+ "targetSellAmount": 0,
146091
+ "tx": null,
146092
+ "amountToCover": null,
146093
+ "buyPriceInBts": null,
146094
+ "estimatedGrossPnlInBts": null,
146095
+ "maxBtsToSpend": null
146096
+ },
146097
+ "id": "pos_1786966172967_3jtin0dd",
146098
+ "market": "HONEST.USD/BTS",
146099
+ "onChain": null,
146100
+ "pnl": {
146101
+ "averageEntryPriceInBts": null,
146102
+ "averageExitPriceInBts": null,
146103
+ "netBtsFlow": null,
146104
+ "realizedCoverAmount": 0,
146105
+ "realizedGrossPnlInBts": 0,
146106
+ "updatedAt": null
146107
+ },
146108
+ "strategy": "short-mpa-bts",
146109
+ "status": "planned",
146110
+ "updatedAt": "2026-08-17T11:29:32.967Z"
146111
+ },
146112
+ {
146113
+ "accountName": "alice",
146114
+ "assets": {
146115
+ "collateral": {
146116
+ "id": "1.3.0",
146117
+ "precision": 5,
146118
+ "symbol": "BTS"
146119
+ },
146120
+ "mpa": {
146121
+ "id": "1.3.10",
146122
+ "precision": 5,
146123
+ "symbol": "HONEST.USD"
146124
+ }
146125
+ },
146126
+ "collateral": {
146127
+ "amount": 25000,
146128
+ "asset": "BTS",
146129
+ "targetCollateralRatio": null
146130
+ },
146131
+ "createdAt": "2026-08-17T11:31:50.406Z",
146132
+ "debt": {
146133
+ "amount": 10,
146134
+ "asset": "HONEST.USD"
146135
+ },
146136
+ "entry": {
146137
+ "expectedBtsProceeds": 10000,
146138
+ "sellPriceInBts": 1000,
146139
+ "averageExecutionPriceInBts": null,
146140
+ "fillCount": 0,
146141
+ "fillStatus": "unfilled",
146142
+ "filledReceiveAmount": 0,
146143
+ "filledSellAmount": 0,
146144
+ "isFullyFilled": false,
146145
+ "lastFillAt": null,
146146
+ "orderId": null,
146147
+ "orderOpen": false,
146148
+ "placedAt": null,
146149
+ "priceInBts": 1000,
146150
+ "receiveAsset": {
146151
+ "id": "1.3.0",
146152
+ "precision": 5,
146153
+ "symbol": "BTS"
146154
+ },
146155
+ "receiveAmountRemaining": 10000,
146156
+ "sellAsset": {
146157
+ "id": "1.3.10",
146158
+ "precision": 5,
146159
+ "symbol": "HONEST.USD"
146160
+ },
146161
+ "sellAmountRemaining": 10,
146162
+ "targetReceiveAmount": 10000,
146163
+ "targetSellAmount": 10,
146164
+ "tx": null
146165
+ },
146166
+ "events": [
146167
+ {
146168
+ "at": "2026-08-17T11:31:50.406Z",
146169
+ "details": {
146170
+ "collateralAmount": 25000,
146171
+ "debtAmount": 10,
146172
+ "mpaAsset": "HONEST.USD",
146173
+ "sellPriceInBts": 1000
146174
+ },
146175
+ "type": "position-created"
146176
+ }
146177
+ ],
146178
+ "exit": {
146179
+ "averageExecutionPriceInBts": null,
146180
+ "fillCount": 0,
146181
+ "fillStatus": "unfilled",
146182
+ "filledReceiveAmount": 0,
146183
+ "filledSellAmount": 0,
146184
+ "isFullyFilled": false,
146185
+ "lastFillAt": null,
146186
+ "orderId": null,
146187
+ "orderOpen": false,
146188
+ "placedAt": null,
146189
+ "priceInBts": null,
146190
+ "receiveAsset": {
146191
+ "id": "1.3.10",
146192
+ "precision": 5,
146193
+ "symbol": "HONEST.USD"
146194
+ },
146195
+ "receiveAmountRemaining": 0,
146196
+ "sellAsset": {
146197
+ "id": "1.3.0",
146198
+ "precision": 5,
146199
+ "symbol": "BTS"
146200
+ },
146201
+ "sellAmountRemaining": 0,
146202
+ "targetReceiveAmount": 0,
146203
+ "targetSellAmount": 0,
146204
+ "tx": null,
146205
+ "amountToCover": null,
146206
+ "buyPriceInBts": null,
146207
+ "estimatedGrossPnlInBts": null,
146208
+ "maxBtsToSpend": null
146209
+ },
146210
+ "id": "pos_1786966310406_x3sdcfnm",
146211
+ "market": "HONEST.USD/BTS",
146212
+ "onChain": null,
146213
+ "pnl": {
146214
+ "averageEntryPriceInBts": null,
146215
+ "averageExitPriceInBts": null,
146216
+ "netBtsFlow": null,
146217
+ "realizedCoverAmount": 0,
146218
+ "realizedGrossPnlInBts": 0,
146219
+ "updatedAt": null
146220
+ },
146221
+ "strategy": "short-mpa-bts",
146222
+ "status": "planned",
146223
+ "updatedAt": "2026-08-17T11:31:50.406Z"
146224
+ },
146225
+ {
146226
+ "accountName": "alice",
146227
+ "assets": {
146228
+ "collateral": {
146229
+ "id": "1.3.0",
146230
+ "precision": 5,
146231
+ "symbol": "BTS"
146232
+ },
146233
+ "mpa": {
146234
+ "id": "1.3.10",
146235
+ "precision": 5,
146236
+ "symbol": "HONEST.USD"
146237
+ }
146238
+ },
146239
+ "collateral": {
146240
+ "amount": 25000,
146241
+ "asset": "BTS",
146242
+ "targetCollateralRatio": null
146243
+ },
146244
+ "createdAt": "2026-08-17T11:34:21.757Z",
146245
+ "debt": {
146246
+ "amount": 10,
146247
+ "asset": "HONEST.USD"
146248
+ },
146249
+ "entry": {
146250
+ "expectedBtsProceeds": 10000,
146251
+ "sellPriceInBts": 1000,
146252
+ "averageExecutionPriceInBts": null,
146253
+ "fillCount": 0,
146254
+ "fillStatus": "unfilled",
146255
+ "filledReceiveAmount": 0,
146256
+ "filledSellAmount": 0,
146257
+ "isFullyFilled": false,
146258
+ "lastFillAt": null,
146259
+ "orderId": null,
146260
+ "orderOpen": false,
146261
+ "placedAt": null,
146262
+ "priceInBts": 1000,
146263
+ "receiveAsset": {
146264
+ "id": "1.3.0",
146265
+ "precision": 5,
146266
+ "symbol": "BTS"
146267
+ },
146268
+ "receiveAmountRemaining": 10000,
146269
+ "sellAsset": {
146270
+ "id": "1.3.10",
146271
+ "precision": 5,
146272
+ "symbol": "HONEST.USD"
146273
+ },
146274
+ "sellAmountRemaining": 10,
146275
+ "targetReceiveAmount": 10000,
146276
+ "targetSellAmount": 10,
146277
+ "tx": null
146278
+ },
146279
+ "events": [
146280
+ {
146281
+ "at": "2026-08-17T11:34:21.757Z",
146282
+ "details": {
146283
+ "collateralAmount": 25000,
146284
+ "debtAmount": 10,
146285
+ "mpaAsset": "HONEST.USD",
146286
+ "sellPriceInBts": 1000
146287
+ },
146288
+ "type": "position-created"
146289
+ }
146290
+ ],
146291
+ "exit": {
146292
+ "averageExecutionPriceInBts": null,
146293
+ "fillCount": 0,
146294
+ "fillStatus": "unfilled",
146295
+ "filledReceiveAmount": 0,
146296
+ "filledSellAmount": 0,
146297
+ "isFullyFilled": false,
146298
+ "lastFillAt": null,
146299
+ "orderId": null,
146300
+ "orderOpen": false,
146301
+ "placedAt": null,
146302
+ "priceInBts": null,
146303
+ "receiveAsset": {
146304
+ "id": "1.3.10",
146305
+ "precision": 5,
146306
+ "symbol": "HONEST.USD"
146307
+ },
146308
+ "receiveAmountRemaining": 0,
146309
+ "sellAsset": {
146310
+ "id": "1.3.0",
146311
+ "precision": 5,
146312
+ "symbol": "BTS"
146313
+ },
146314
+ "sellAmountRemaining": 0,
146315
+ "targetReceiveAmount": 0,
146316
+ "targetSellAmount": 0,
146317
+ "tx": null,
146318
+ "amountToCover": null,
146319
+ "buyPriceInBts": null,
146320
+ "estimatedGrossPnlInBts": null,
146321
+ "maxBtsToSpend": null
146322
+ },
146323
+ "id": "pos_1786966461757_oqe7aavx",
146324
+ "market": "HONEST.USD/BTS",
146325
+ "onChain": null,
146326
+ "pnl": {
146327
+ "averageEntryPriceInBts": null,
146328
+ "averageExitPriceInBts": null,
146329
+ "netBtsFlow": null,
146330
+ "realizedCoverAmount": 0,
146331
+ "realizedGrossPnlInBts": 0,
146332
+ "updatedAt": null
146333
+ },
146334
+ "strategy": "short-mpa-bts",
146335
+ "status": "planned",
146336
+ "updatedAt": "2026-08-17T11:34:21.757Z"
146337
+ },
146338
+ {
146339
+ "accountName": "alice",
146340
+ "assets": {
146341
+ "collateral": {
146342
+ "id": "1.3.0",
146343
+ "precision": 5,
146344
+ "symbol": "BTS"
146345
+ },
146346
+ "mpa": {
146347
+ "id": "1.3.10",
146348
+ "precision": 5,
146349
+ "symbol": "HONEST.USD"
146350
+ }
146351
+ },
146352
+ "collateral": {
146353
+ "amount": 25000,
146354
+ "asset": "BTS",
146355
+ "targetCollateralRatio": null
146356
+ },
146357
+ "createdAt": "2026-08-17T11:37:41.229Z",
146358
+ "debt": {
146359
+ "amount": 10,
146360
+ "asset": "HONEST.USD"
146361
+ },
146362
+ "entry": {
146363
+ "expectedBtsProceeds": 10000,
146364
+ "sellPriceInBts": 1000,
146365
+ "averageExecutionPriceInBts": null,
146366
+ "fillCount": 0,
146367
+ "fillStatus": "unfilled",
146368
+ "filledReceiveAmount": 0,
146369
+ "filledSellAmount": 0,
146370
+ "isFullyFilled": false,
146371
+ "lastFillAt": null,
146372
+ "orderId": null,
146373
+ "orderOpen": false,
146374
+ "placedAt": null,
146375
+ "priceInBts": 1000,
146376
+ "receiveAsset": {
146377
+ "id": "1.3.0",
146378
+ "precision": 5,
146379
+ "symbol": "BTS"
146380
+ },
146381
+ "receiveAmountRemaining": 10000,
146382
+ "sellAsset": {
146383
+ "id": "1.3.10",
146384
+ "precision": 5,
146385
+ "symbol": "HONEST.USD"
146386
+ },
146387
+ "sellAmountRemaining": 10,
146388
+ "targetReceiveAmount": 10000,
146389
+ "targetSellAmount": 10,
146390
+ "tx": null
146391
+ },
146392
+ "events": [
146393
+ {
146394
+ "at": "2026-08-17T11:37:41.229Z",
146395
+ "details": {
146396
+ "collateralAmount": 25000,
146397
+ "debtAmount": 10,
146398
+ "mpaAsset": "HONEST.USD",
146399
+ "sellPriceInBts": 1000
146400
+ },
146401
+ "type": "position-created"
146402
+ }
146403
+ ],
146404
+ "exit": {
146405
+ "averageExecutionPriceInBts": null,
146406
+ "fillCount": 0,
146407
+ "fillStatus": "unfilled",
146408
+ "filledReceiveAmount": 0,
146409
+ "filledSellAmount": 0,
146410
+ "isFullyFilled": false,
146411
+ "lastFillAt": null,
146412
+ "orderId": null,
146413
+ "orderOpen": false,
146414
+ "placedAt": null,
146415
+ "priceInBts": null,
146416
+ "receiveAsset": {
146417
+ "id": "1.3.10",
146418
+ "precision": 5,
146419
+ "symbol": "HONEST.USD"
146420
+ },
146421
+ "receiveAmountRemaining": 0,
146422
+ "sellAsset": {
146423
+ "id": "1.3.0",
146424
+ "precision": 5,
146425
+ "symbol": "BTS"
146426
+ },
146427
+ "sellAmountRemaining": 0,
146428
+ "targetReceiveAmount": 0,
146429
+ "targetSellAmount": 0,
146430
+ "tx": null,
146431
+ "amountToCover": null,
146432
+ "buyPriceInBts": null,
146433
+ "estimatedGrossPnlInBts": null,
146434
+ "maxBtsToSpend": null
146435
+ },
146436
+ "id": "pos_1786966661229_7fln562h",
146437
+ "market": "HONEST.USD/BTS",
146438
+ "onChain": null,
146439
+ "pnl": {
146440
+ "averageEntryPriceInBts": null,
146441
+ "averageExitPriceInBts": null,
146442
+ "netBtsFlow": null,
146443
+ "realizedCoverAmount": 0,
146444
+ "realizedGrossPnlInBts": 0,
146445
+ "updatedAt": null
146446
+ },
146447
+ "strategy": "short-mpa-bts",
146448
+ "status": "planned",
146449
+ "updatedAt": "2026-08-17T11:37:41.229Z"
146450
+ },
146451
+ {
146452
+ "accountName": "alice",
146453
+ "assets": {
146454
+ "collateral": {
146455
+ "id": "1.3.0",
146456
+ "precision": 5,
146457
+ "symbol": "BTS"
146458
+ },
146459
+ "mpa": {
146460
+ "id": "1.3.10",
146461
+ "precision": 5,
146462
+ "symbol": "HONEST.USD"
146463
+ }
146464
+ },
146465
+ "collateral": {
146466
+ "amount": 25000,
146467
+ "asset": "BTS",
146468
+ "targetCollateralRatio": null
146469
+ },
146470
+ "createdAt": "2026-08-17T11:40:09.557Z",
146471
+ "debt": {
146472
+ "amount": 10,
146473
+ "asset": "HONEST.USD"
146474
+ },
146475
+ "entry": {
146476
+ "expectedBtsProceeds": 10000,
146477
+ "sellPriceInBts": 1000,
146478
+ "averageExecutionPriceInBts": null,
146479
+ "fillCount": 0,
146480
+ "fillStatus": "unfilled",
146481
+ "filledReceiveAmount": 0,
146482
+ "filledSellAmount": 0,
146483
+ "isFullyFilled": false,
146484
+ "lastFillAt": null,
146485
+ "orderId": null,
146486
+ "orderOpen": false,
146487
+ "placedAt": null,
146488
+ "priceInBts": 1000,
146489
+ "receiveAsset": {
146490
+ "id": "1.3.0",
146491
+ "precision": 5,
146492
+ "symbol": "BTS"
146493
+ },
146494
+ "receiveAmountRemaining": 10000,
146495
+ "sellAsset": {
146496
+ "id": "1.3.10",
146497
+ "precision": 5,
146498
+ "symbol": "HONEST.USD"
146499
+ },
146500
+ "sellAmountRemaining": 10,
146501
+ "targetReceiveAmount": 10000,
146502
+ "targetSellAmount": 10,
146503
+ "tx": null
146504
+ },
146505
+ "events": [
146506
+ {
146507
+ "at": "2026-08-17T11:40:09.557Z",
146508
+ "details": {
146509
+ "collateralAmount": 25000,
146510
+ "debtAmount": 10,
146511
+ "mpaAsset": "HONEST.USD",
146512
+ "sellPriceInBts": 1000
146513
+ },
146514
+ "type": "position-created"
146515
+ }
146516
+ ],
146517
+ "exit": {
146518
+ "averageExecutionPriceInBts": null,
146519
+ "fillCount": 0,
146520
+ "fillStatus": "unfilled",
146521
+ "filledReceiveAmount": 0,
146522
+ "filledSellAmount": 0,
146523
+ "isFullyFilled": false,
146524
+ "lastFillAt": null,
146525
+ "orderId": null,
146526
+ "orderOpen": false,
146527
+ "placedAt": null,
146528
+ "priceInBts": null,
146529
+ "receiveAsset": {
146530
+ "id": "1.3.10",
146531
+ "precision": 5,
146532
+ "symbol": "HONEST.USD"
146533
+ },
146534
+ "receiveAmountRemaining": 0,
146535
+ "sellAsset": {
146536
+ "id": "1.3.0",
146537
+ "precision": 5,
146538
+ "symbol": "BTS"
146539
+ },
146540
+ "sellAmountRemaining": 0,
146541
+ "targetReceiveAmount": 0,
146542
+ "targetSellAmount": 0,
146543
+ "tx": null,
146544
+ "amountToCover": null,
146545
+ "buyPriceInBts": null,
146546
+ "estimatedGrossPnlInBts": null,
146547
+ "maxBtsToSpend": null
146548
+ },
146549
+ "id": "pos_1786966809557_406x54m7",
146550
+ "market": "HONEST.USD/BTS",
146551
+ "onChain": null,
146552
+ "pnl": {
146553
+ "averageEntryPriceInBts": null,
146554
+ "averageExitPriceInBts": null,
146555
+ "netBtsFlow": null,
146556
+ "realizedCoverAmount": 0,
146557
+ "realizedGrossPnlInBts": 0,
146558
+ "updatedAt": null
146559
+ },
146560
+ "strategy": "short-mpa-bts",
146561
+ "status": "planned",
146562
+ "updatedAt": "2026-08-17T11:40:09.557Z"
146563
+ },
146564
+ {
146565
+ "accountName": "alice",
146566
+ "assets": {
146567
+ "collateral": {
146568
+ "id": "1.3.0",
146569
+ "precision": 5,
146570
+ "symbol": "BTS"
146571
+ },
146572
+ "mpa": {
146573
+ "id": "1.3.10",
146574
+ "precision": 5,
146575
+ "symbol": "HONEST.USD"
146576
+ }
146577
+ },
146578
+ "collateral": {
146579
+ "amount": 25000,
146580
+ "asset": "BTS",
146581
+ "targetCollateralRatio": null
146582
+ },
146583
+ "createdAt": "2026-08-17T11:40:24.086Z",
146584
+ "debt": {
146585
+ "amount": 10,
146586
+ "asset": "HONEST.USD"
146587
+ },
146588
+ "entry": {
146589
+ "expectedBtsProceeds": 10000,
146590
+ "sellPriceInBts": 1000,
146591
+ "averageExecutionPriceInBts": null,
146592
+ "fillCount": 0,
146593
+ "fillStatus": "unfilled",
146594
+ "filledReceiveAmount": 0,
146595
+ "filledSellAmount": 0,
146596
+ "isFullyFilled": false,
146597
+ "lastFillAt": null,
146598
+ "orderId": null,
146599
+ "orderOpen": false,
146600
+ "placedAt": null,
146601
+ "priceInBts": 1000,
146602
+ "receiveAsset": {
146603
+ "id": "1.3.0",
146604
+ "precision": 5,
146605
+ "symbol": "BTS"
146606
+ },
146607
+ "receiveAmountRemaining": 10000,
146608
+ "sellAsset": {
146609
+ "id": "1.3.10",
146610
+ "precision": 5,
146611
+ "symbol": "HONEST.USD"
146612
+ },
146613
+ "sellAmountRemaining": 10,
146614
+ "targetReceiveAmount": 10000,
146615
+ "targetSellAmount": 10,
146616
+ "tx": null
146617
+ },
146618
+ "events": [
146619
+ {
146620
+ "at": "2026-08-17T11:40:24.086Z",
146621
+ "details": {
146622
+ "collateralAmount": 25000,
146623
+ "debtAmount": 10,
146624
+ "mpaAsset": "HONEST.USD",
146625
+ "sellPriceInBts": 1000
146626
+ },
146627
+ "type": "position-created"
146628
+ }
146629
+ ],
146630
+ "exit": {
146631
+ "averageExecutionPriceInBts": null,
146632
+ "fillCount": 0,
146633
+ "fillStatus": "unfilled",
146634
+ "filledReceiveAmount": 0,
146635
+ "filledSellAmount": 0,
146636
+ "isFullyFilled": false,
146637
+ "lastFillAt": null,
146638
+ "orderId": null,
146639
+ "orderOpen": false,
146640
+ "placedAt": null,
146641
+ "priceInBts": null,
146642
+ "receiveAsset": {
146643
+ "id": "1.3.10",
146644
+ "precision": 5,
146645
+ "symbol": "HONEST.USD"
146646
+ },
146647
+ "receiveAmountRemaining": 0,
146648
+ "sellAsset": {
146649
+ "id": "1.3.0",
146650
+ "precision": 5,
146651
+ "symbol": "BTS"
146652
+ },
146653
+ "sellAmountRemaining": 0,
146654
+ "targetReceiveAmount": 0,
146655
+ "targetSellAmount": 0,
146656
+ "tx": null,
146657
+ "amountToCover": null,
146658
+ "buyPriceInBts": null,
146659
+ "estimatedGrossPnlInBts": null,
146660
+ "maxBtsToSpend": null
146661
+ },
146662
+ "id": "pos_1786966824086_ux0xohxt",
146663
+ "market": "HONEST.USD/BTS",
146664
+ "onChain": null,
146665
+ "pnl": {
146666
+ "averageEntryPriceInBts": null,
146667
+ "averageExitPriceInBts": null,
146668
+ "netBtsFlow": null,
146669
+ "realizedCoverAmount": 0,
146670
+ "realizedGrossPnlInBts": 0,
146671
+ "updatedAt": null
146672
+ },
146673
+ "strategy": "short-mpa-bts",
146674
+ "status": "planned",
146675
+ "updatedAt": "2026-08-17T11:40:24.086Z"
146676
+ },
146677
+ {
146678
+ "accountName": "alice",
146679
+ "assets": {
146680
+ "collateral": {
146681
+ "id": "1.3.0",
146682
+ "precision": 5,
146683
+ "symbol": "BTS"
146684
+ },
146685
+ "mpa": {
146686
+ "id": "1.3.10",
146687
+ "precision": 5,
146688
+ "symbol": "HONEST.USD"
146689
+ }
146690
+ },
146691
+ "collateral": {
146692
+ "amount": 25000,
146693
+ "asset": "BTS",
146694
+ "targetCollateralRatio": null
146695
+ },
146696
+ "createdAt": "2026-08-17T11:41:47.651Z",
146697
+ "debt": {
146698
+ "amount": 10,
146699
+ "asset": "HONEST.USD"
146700
+ },
146701
+ "entry": {
146702
+ "expectedBtsProceeds": 10000,
146703
+ "sellPriceInBts": 1000,
146704
+ "averageExecutionPriceInBts": null,
146705
+ "fillCount": 0,
146706
+ "fillStatus": "unfilled",
146707
+ "filledReceiveAmount": 0,
146708
+ "filledSellAmount": 0,
146709
+ "isFullyFilled": false,
146710
+ "lastFillAt": null,
146711
+ "orderId": null,
146712
+ "orderOpen": false,
146713
+ "placedAt": null,
146714
+ "priceInBts": 1000,
146715
+ "receiveAsset": {
146716
+ "id": "1.3.0",
146717
+ "precision": 5,
146718
+ "symbol": "BTS"
146719
+ },
146720
+ "receiveAmountRemaining": 10000,
146721
+ "sellAsset": {
146722
+ "id": "1.3.10",
146723
+ "precision": 5,
146724
+ "symbol": "HONEST.USD"
146725
+ },
146726
+ "sellAmountRemaining": 10,
146727
+ "targetReceiveAmount": 10000,
146728
+ "targetSellAmount": 10,
146729
+ "tx": null
146730
+ },
146731
+ "events": [
146732
+ {
146733
+ "at": "2026-08-17T11:41:47.651Z",
146734
+ "details": {
146735
+ "collateralAmount": 25000,
146736
+ "debtAmount": 10,
146737
+ "mpaAsset": "HONEST.USD",
146738
+ "sellPriceInBts": 1000
146739
+ },
146740
+ "type": "position-created"
146741
+ }
146742
+ ],
146743
+ "exit": {
146744
+ "averageExecutionPriceInBts": null,
146745
+ "fillCount": 0,
146746
+ "fillStatus": "unfilled",
146747
+ "filledReceiveAmount": 0,
146748
+ "filledSellAmount": 0,
146749
+ "isFullyFilled": false,
146750
+ "lastFillAt": null,
146751
+ "orderId": null,
146752
+ "orderOpen": false,
146753
+ "placedAt": null,
146754
+ "priceInBts": null,
146755
+ "receiveAsset": {
146756
+ "id": "1.3.10",
146757
+ "precision": 5,
146758
+ "symbol": "HONEST.USD"
146759
+ },
146760
+ "receiveAmountRemaining": 0,
146761
+ "sellAsset": {
146762
+ "id": "1.3.0",
146763
+ "precision": 5,
146764
+ "symbol": "BTS"
146765
+ },
146766
+ "sellAmountRemaining": 0,
146767
+ "targetReceiveAmount": 0,
146768
+ "targetSellAmount": 0,
146769
+ "tx": null,
146770
+ "amountToCover": null,
146771
+ "buyPriceInBts": null,
146772
+ "estimatedGrossPnlInBts": null,
146773
+ "maxBtsToSpend": null
146774
+ },
146775
+ "id": "pos_1786966907651_f37owvsd",
146776
+ "market": "HONEST.USD/BTS",
146777
+ "onChain": null,
146778
+ "pnl": {
146779
+ "averageEntryPriceInBts": null,
146780
+ "averageExitPriceInBts": null,
146781
+ "netBtsFlow": null,
146782
+ "realizedCoverAmount": 0,
146783
+ "realizedGrossPnlInBts": 0,
146784
+ "updatedAt": null
146785
+ },
146786
+ "strategy": "short-mpa-bts",
146787
+ "status": "planned",
146788
+ "updatedAt": "2026-08-17T11:41:47.651Z"
146789
+ },
146790
+ {
146791
+ "accountName": "alice",
146792
+ "assets": {
146793
+ "collateral": {
146794
+ "id": "1.3.0",
146795
+ "precision": 5,
146796
+ "symbol": "BTS"
146797
+ },
146798
+ "mpa": {
146799
+ "id": "1.3.10",
146800
+ "precision": 5,
146801
+ "symbol": "HONEST.USD"
146802
+ }
146803
+ },
146804
+ "collateral": {
146805
+ "amount": 25000,
146806
+ "asset": "BTS",
146807
+ "targetCollateralRatio": null
146808
+ },
146809
+ "createdAt": "2026-08-17T11:42:53.034Z",
146810
+ "debt": {
146811
+ "amount": 10,
146812
+ "asset": "HONEST.USD"
146813
+ },
146814
+ "entry": {
146815
+ "expectedBtsProceeds": 10000,
146816
+ "sellPriceInBts": 1000,
146817
+ "averageExecutionPriceInBts": null,
146818
+ "fillCount": 0,
146819
+ "fillStatus": "unfilled",
146820
+ "filledReceiveAmount": 0,
146821
+ "filledSellAmount": 0,
146822
+ "isFullyFilled": false,
146823
+ "lastFillAt": null,
146824
+ "orderId": null,
146825
+ "orderOpen": false,
146826
+ "placedAt": null,
146827
+ "priceInBts": 1000,
146828
+ "receiveAsset": {
146829
+ "id": "1.3.0",
146830
+ "precision": 5,
146831
+ "symbol": "BTS"
146832
+ },
146833
+ "receiveAmountRemaining": 10000,
146834
+ "sellAsset": {
146835
+ "id": "1.3.10",
146836
+ "precision": 5,
146837
+ "symbol": "HONEST.USD"
146838
+ },
146839
+ "sellAmountRemaining": 10,
146840
+ "targetReceiveAmount": 10000,
146841
+ "targetSellAmount": 10,
146842
+ "tx": null
146843
+ },
146844
+ "events": [
146845
+ {
146846
+ "at": "2026-08-17T11:42:53.034Z",
146847
+ "details": {
146848
+ "collateralAmount": 25000,
146849
+ "debtAmount": 10,
146850
+ "mpaAsset": "HONEST.USD",
146851
+ "sellPriceInBts": 1000
146852
+ },
146853
+ "type": "position-created"
146854
+ }
146855
+ ],
146856
+ "exit": {
146857
+ "averageExecutionPriceInBts": null,
146858
+ "fillCount": 0,
146859
+ "fillStatus": "unfilled",
146860
+ "filledReceiveAmount": 0,
146861
+ "filledSellAmount": 0,
146862
+ "isFullyFilled": false,
146863
+ "lastFillAt": null,
146864
+ "orderId": null,
146865
+ "orderOpen": false,
146866
+ "placedAt": null,
146867
+ "priceInBts": null,
146868
+ "receiveAsset": {
146869
+ "id": "1.3.10",
146870
+ "precision": 5,
146871
+ "symbol": "HONEST.USD"
146872
+ },
146873
+ "receiveAmountRemaining": 0,
146874
+ "sellAsset": {
146875
+ "id": "1.3.0",
146876
+ "precision": 5,
146877
+ "symbol": "BTS"
146878
+ },
146879
+ "sellAmountRemaining": 0,
146880
+ "targetReceiveAmount": 0,
146881
+ "targetSellAmount": 0,
146882
+ "tx": null,
146883
+ "amountToCover": null,
146884
+ "buyPriceInBts": null,
146885
+ "estimatedGrossPnlInBts": null,
146886
+ "maxBtsToSpend": null
146887
+ },
146888
+ "id": "pos_1786966973034_mu9yre36",
146889
+ "market": "HONEST.USD/BTS",
146890
+ "onChain": null,
146891
+ "pnl": {
146892
+ "averageEntryPriceInBts": null,
146893
+ "averageExitPriceInBts": null,
146894
+ "netBtsFlow": null,
146895
+ "realizedCoverAmount": 0,
146896
+ "realizedGrossPnlInBts": 0,
146897
+ "updatedAt": null
146898
+ },
146899
+ "strategy": "short-mpa-bts",
146900
+ "status": "planned",
146901
+ "updatedAt": "2026-08-17T11:42:53.034Z"
146902
+ },
146903
+ {
146904
+ "accountName": "alice",
146905
+ "assets": {
146906
+ "collateral": {
146907
+ "id": "1.3.0",
146908
+ "precision": 5,
146909
+ "symbol": "BTS"
146910
+ },
146911
+ "mpa": {
146912
+ "id": "1.3.10",
146913
+ "precision": 5,
146914
+ "symbol": "HONEST.USD"
146915
+ }
146916
+ },
146917
+ "collateral": {
146918
+ "amount": 25000,
146919
+ "asset": "BTS",
146920
+ "targetCollateralRatio": null
146921
+ },
146922
+ "createdAt": "2026-08-17T11:43:49.540Z",
146923
+ "debt": {
146924
+ "amount": 10,
146925
+ "asset": "HONEST.USD"
146926
+ },
146927
+ "entry": {
146928
+ "expectedBtsProceeds": 10000,
146929
+ "sellPriceInBts": 1000,
146930
+ "averageExecutionPriceInBts": null,
146931
+ "fillCount": 0,
146932
+ "fillStatus": "unfilled",
146933
+ "filledReceiveAmount": 0,
146934
+ "filledSellAmount": 0,
146935
+ "isFullyFilled": false,
146936
+ "lastFillAt": null,
146937
+ "orderId": null,
146938
+ "orderOpen": false,
146939
+ "placedAt": null,
146940
+ "priceInBts": 1000,
146941
+ "receiveAsset": {
146942
+ "id": "1.3.0",
146943
+ "precision": 5,
146944
+ "symbol": "BTS"
146945
+ },
146946
+ "receiveAmountRemaining": 10000,
146947
+ "sellAsset": {
146948
+ "id": "1.3.10",
146949
+ "precision": 5,
146950
+ "symbol": "HONEST.USD"
146951
+ },
146952
+ "sellAmountRemaining": 10,
146953
+ "targetReceiveAmount": 10000,
146954
+ "targetSellAmount": 10,
146955
+ "tx": null
146956
+ },
146957
+ "events": [
146958
+ {
146959
+ "at": "2026-08-17T11:43:49.540Z",
146960
+ "details": {
146961
+ "collateralAmount": 25000,
146962
+ "debtAmount": 10,
146963
+ "mpaAsset": "HONEST.USD",
146964
+ "sellPriceInBts": 1000
146965
+ },
146966
+ "type": "position-created"
146967
+ }
146968
+ ],
146969
+ "exit": {
146970
+ "averageExecutionPriceInBts": null,
146971
+ "fillCount": 0,
146972
+ "fillStatus": "unfilled",
146973
+ "filledReceiveAmount": 0,
146974
+ "filledSellAmount": 0,
146975
+ "isFullyFilled": false,
146976
+ "lastFillAt": null,
146977
+ "orderId": null,
146978
+ "orderOpen": false,
146979
+ "placedAt": null,
146980
+ "priceInBts": null,
146981
+ "receiveAsset": {
146982
+ "id": "1.3.10",
146983
+ "precision": 5,
146984
+ "symbol": "HONEST.USD"
146985
+ },
146986
+ "receiveAmountRemaining": 0,
146987
+ "sellAsset": {
146988
+ "id": "1.3.0",
146989
+ "precision": 5,
146990
+ "symbol": "BTS"
146991
+ },
146992
+ "sellAmountRemaining": 0,
146993
+ "targetReceiveAmount": 0,
146994
+ "targetSellAmount": 0,
146995
+ "tx": null,
146996
+ "amountToCover": null,
146997
+ "buyPriceInBts": null,
146998
+ "estimatedGrossPnlInBts": null,
146999
+ "maxBtsToSpend": null
147000
+ },
147001
+ "id": "pos_1786967029541_ikzmzxvr",
147002
+ "market": "HONEST.USD/BTS",
147003
+ "onChain": null,
147004
+ "pnl": {
147005
+ "averageEntryPriceInBts": null,
147006
+ "averageExitPriceInBts": null,
147007
+ "netBtsFlow": null,
147008
+ "realizedCoverAmount": 0,
147009
+ "realizedGrossPnlInBts": 0,
147010
+ "updatedAt": null
147011
+ },
147012
+ "strategy": "short-mpa-bts",
147013
+ "status": "planned",
147014
+ "updatedAt": "2026-08-17T11:43:49.540Z"
147015
+ },
147016
+ {
147017
+ "accountName": "alice",
147018
+ "assets": {
147019
+ "collateral": {
147020
+ "id": "1.3.0",
147021
+ "precision": 5,
147022
+ "symbol": "BTS"
147023
+ },
147024
+ "mpa": {
147025
+ "id": "1.3.10",
147026
+ "precision": 5,
147027
+ "symbol": "HONEST.USD"
147028
+ }
147029
+ },
147030
+ "collateral": {
147031
+ "amount": 25000,
147032
+ "asset": "BTS",
147033
+ "targetCollateralRatio": null
147034
+ },
147035
+ "createdAt": "2026-08-17T11:44:48.097Z",
147036
+ "debt": {
147037
+ "amount": 10,
147038
+ "asset": "HONEST.USD"
147039
+ },
147040
+ "entry": {
147041
+ "expectedBtsProceeds": 10000,
147042
+ "sellPriceInBts": 1000,
147043
+ "averageExecutionPriceInBts": null,
147044
+ "fillCount": 0,
147045
+ "fillStatus": "unfilled",
147046
+ "filledReceiveAmount": 0,
147047
+ "filledSellAmount": 0,
147048
+ "isFullyFilled": false,
147049
+ "lastFillAt": null,
147050
+ "orderId": null,
147051
+ "orderOpen": false,
147052
+ "placedAt": null,
147053
+ "priceInBts": 1000,
147054
+ "receiveAsset": {
147055
+ "id": "1.3.0",
147056
+ "precision": 5,
147057
+ "symbol": "BTS"
147058
+ },
147059
+ "receiveAmountRemaining": 10000,
147060
+ "sellAsset": {
147061
+ "id": "1.3.10",
147062
+ "precision": 5,
147063
+ "symbol": "HONEST.USD"
147064
+ },
147065
+ "sellAmountRemaining": 10,
147066
+ "targetReceiveAmount": 10000,
147067
+ "targetSellAmount": 10,
147068
+ "tx": null
147069
+ },
147070
+ "events": [
147071
+ {
147072
+ "at": "2026-08-17T11:44:48.097Z",
147073
+ "details": {
147074
+ "collateralAmount": 25000,
147075
+ "debtAmount": 10,
147076
+ "mpaAsset": "HONEST.USD",
147077
+ "sellPriceInBts": 1000
147078
+ },
147079
+ "type": "position-created"
147080
+ }
147081
+ ],
147082
+ "exit": {
147083
+ "averageExecutionPriceInBts": null,
147084
+ "fillCount": 0,
147085
+ "fillStatus": "unfilled",
147086
+ "filledReceiveAmount": 0,
147087
+ "filledSellAmount": 0,
147088
+ "isFullyFilled": false,
147089
+ "lastFillAt": null,
147090
+ "orderId": null,
147091
+ "orderOpen": false,
147092
+ "placedAt": null,
147093
+ "priceInBts": null,
147094
+ "receiveAsset": {
147095
+ "id": "1.3.10",
147096
+ "precision": 5,
147097
+ "symbol": "HONEST.USD"
147098
+ },
147099
+ "receiveAmountRemaining": 0,
147100
+ "sellAsset": {
147101
+ "id": "1.3.0",
147102
+ "precision": 5,
147103
+ "symbol": "BTS"
147104
+ },
147105
+ "sellAmountRemaining": 0,
147106
+ "targetReceiveAmount": 0,
147107
+ "targetSellAmount": 0,
147108
+ "tx": null,
147109
+ "amountToCover": null,
147110
+ "buyPriceInBts": null,
147111
+ "estimatedGrossPnlInBts": null,
147112
+ "maxBtsToSpend": null
147113
+ },
147114
+ "id": "pos_1786967088097_5obivvrw",
147115
+ "market": "HONEST.USD/BTS",
147116
+ "onChain": null,
147117
+ "pnl": {
147118
+ "averageEntryPriceInBts": null,
147119
+ "averageExitPriceInBts": null,
147120
+ "netBtsFlow": null,
147121
+ "realizedCoverAmount": 0,
147122
+ "realizedGrossPnlInBts": 0,
147123
+ "updatedAt": null
147124
+ },
147125
+ "strategy": "short-mpa-bts",
147126
+ "status": "planned",
147127
+ "updatedAt": "2026-08-17T11:44:48.097Z"
147128
+ },
147129
+ {
147130
+ "accountName": "alice",
147131
+ "assets": {
147132
+ "collateral": {
147133
+ "id": "1.3.0",
147134
+ "precision": 5,
147135
+ "symbol": "BTS"
147136
+ },
147137
+ "mpa": {
147138
+ "id": "1.3.10",
147139
+ "precision": 5,
147140
+ "symbol": "HONEST.USD"
147141
+ }
147142
+ },
147143
+ "collateral": {
147144
+ "amount": 25000,
147145
+ "asset": "BTS",
147146
+ "targetCollateralRatio": null
147147
+ },
147148
+ "createdAt": "2026-08-18T09:11:02.651Z",
147149
+ "debt": {
147150
+ "amount": 10,
147151
+ "asset": "HONEST.USD"
147152
+ },
147153
+ "entry": {
147154
+ "expectedBtsProceeds": 10000,
147155
+ "sellPriceInBts": 1000,
147156
+ "averageExecutionPriceInBts": null,
147157
+ "fillCount": 0,
147158
+ "fillStatus": "unfilled",
147159
+ "filledReceiveAmount": 0,
147160
+ "filledSellAmount": 0,
147161
+ "isFullyFilled": false,
147162
+ "lastFillAt": null,
147163
+ "orderId": null,
147164
+ "orderOpen": false,
147165
+ "placedAt": null,
147166
+ "priceInBts": 1000,
147167
+ "receiveAsset": {
147168
+ "id": "1.3.0",
147169
+ "precision": 5,
147170
+ "symbol": "BTS"
147171
+ },
147172
+ "receiveAmountRemaining": 10000,
147173
+ "sellAsset": {
147174
+ "id": "1.3.10",
147175
+ "precision": 5,
147176
+ "symbol": "HONEST.USD"
147177
+ },
147178
+ "sellAmountRemaining": 10,
147179
+ "targetReceiveAmount": 10000,
147180
+ "targetSellAmount": 10,
147181
+ "tx": null
147182
+ },
147183
+ "events": [
147184
+ {
147185
+ "at": "2026-08-18T09:11:02.651Z",
147186
+ "details": {
147187
+ "collateralAmount": 25000,
147188
+ "debtAmount": 10,
147189
+ "mpaAsset": "HONEST.USD",
147190
+ "sellPriceInBts": 1000
147191
+ },
147192
+ "type": "position-created"
147193
+ }
147194
+ ],
147195
+ "exit": {
147196
+ "averageExecutionPriceInBts": null,
147197
+ "fillCount": 0,
147198
+ "fillStatus": "unfilled",
147199
+ "filledReceiveAmount": 0,
147200
+ "filledSellAmount": 0,
147201
+ "isFullyFilled": false,
147202
+ "lastFillAt": null,
147203
+ "orderId": null,
147204
+ "orderOpen": false,
147205
+ "placedAt": null,
147206
+ "priceInBts": null,
147207
+ "receiveAsset": {
147208
+ "id": "1.3.10",
147209
+ "precision": 5,
147210
+ "symbol": "HONEST.USD"
147211
+ },
147212
+ "receiveAmountRemaining": 0,
147213
+ "sellAsset": {
147214
+ "id": "1.3.0",
147215
+ "precision": 5,
147216
+ "symbol": "BTS"
147217
+ },
147218
+ "sellAmountRemaining": 0,
147219
+ "targetReceiveAmount": 0,
147220
+ "targetSellAmount": 0,
147221
+ "tx": null,
147222
+ "amountToCover": null,
147223
+ "buyPriceInBts": null,
147224
+ "estimatedGrossPnlInBts": null,
147225
+ "maxBtsToSpend": null
147226
+ },
147227
+ "id": "pos_1787044262652_yqdf4f74",
147228
+ "market": "HONEST.USD/BTS",
147229
+ "onChain": null,
147230
+ "pnl": {
147231
+ "averageEntryPriceInBts": null,
147232
+ "averageExitPriceInBts": null,
147233
+ "netBtsFlow": null,
147234
+ "realizedCoverAmount": 0,
147235
+ "realizedGrossPnlInBts": 0,
147236
+ "updatedAt": null
147237
+ },
147238
+ "strategy": "short-mpa-bts",
147239
+ "status": "planned",
147240
+ "updatedAt": "2026-08-18T09:11:02.651Z"
147241
+ },
147242
+ {
147243
+ "accountName": "alice",
147244
+ "assets": {
147245
+ "collateral": {
147246
+ "id": "1.3.0",
147247
+ "precision": 5,
147248
+ "symbol": "BTS"
147249
+ },
147250
+ "mpa": {
147251
+ "id": "1.3.10",
147252
+ "precision": 5,
147253
+ "symbol": "HONEST.USD"
147254
+ }
147255
+ },
147256
+ "collateral": {
147257
+ "amount": 25000,
147258
+ "asset": "BTS",
147259
+ "targetCollateralRatio": null
147260
+ },
147261
+ "createdAt": "2026-08-18T09:12:55.771Z",
147262
+ "debt": {
147263
+ "amount": 10,
147264
+ "asset": "HONEST.USD"
147265
+ },
147266
+ "entry": {
147267
+ "expectedBtsProceeds": 10000,
147268
+ "sellPriceInBts": 1000,
147269
+ "averageExecutionPriceInBts": null,
147270
+ "fillCount": 0,
147271
+ "fillStatus": "unfilled",
147272
+ "filledReceiveAmount": 0,
147273
+ "filledSellAmount": 0,
147274
+ "isFullyFilled": false,
147275
+ "lastFillAt": null,
147276
+ "orderId": null,
147277
+ "orderOpen": false,
147278
+ "placedAt": null,
147279
+ "priceInBts": 1000,
147280
+ "receiveAsset": {
147281
+ "id": "1.3.0",
147282
+ "precision": 5,
147283
+ "symbol": "BTS"
147284
+ },
147285
+ "receiveAmountRemaining": 10000,
147286
+ "sellAsset": {
147287
+ "id": "1.3.10",
147288
+ "precision": 5,
147289
+ "symbol": "HONEST.USD"
147290
+ },
147291
+ "sellAmountRemaining": 10,
147292
+ "targetReceiveAmount": 10000,
147293
+ "targetSellAmount": 10,
147294
+ "tx": null
147295
+ },
147296
+ "events": [
147297
+ {
147298
+ "at": "2026-08-18T09:12:55.771Z",
147299
+ "details": {
147300
+ "collateralAmount": 25000,
147301
+ "debtAmount": 10,
147302
+ "mpaAsset": "HONEST.USD",
147303
+ "sellPriceInBts": 1000
147304
+ },
147305
+ "type": "position-created"
147306
+ }
147307
+ ],
147308
+ "exit": {
147309
+ "averageExecutionPriceInBts": null,
147310
+ "fillCount": 0,
147311
+ "fillStatus": "unfilled",
147312
+ "filledReceiveAmount": 0,
147313
+ "filledSellAmount": 0,
147314
+ "isFullyFilled": false,
147315
+ "lastFillAt": null,
147316
+ "orderId": null,
147317
+ "orderOpen": false,
147318
+ "placedAt": null,
147319
+ "priceInBts": null,
147320
+ "receiveAsset": {
147321
+ "id": "1.3.10",
147322
+ "precision": 5,
147323
+ "symbol": "HONEST.USD"
147324
+ },
147325
+ "receiveAmountRemaining": 0,
147326
+ "sellAsset": {
147327
+ "id": "1.3.0",
147328
+ "precision": 5,
147329
+ "symbol": "BTS"
147330
+ },
147331
+ "sellAmountRemaining": 0,
147332
+ "targetReceiveAmount": 0,
147333
+ "targetSellAmount": 0,
147334
+ "tx": null,
147335
+ "amountToCover": null,
147336
+ "buyPriceInBts": null,
147337
+ "estimatedGrossPnlInBts": null,
147338
+ "maxBtsToSpend": null
147339
+ },
147340
+ "id": "pos_1787044375772_2iq3nee6",
147341
+ "market": "HONEST.USD/BTS",
147342
+ "onChain": null,
147343
+ "pnl": {
147344
+ "averageEntryPriceInBts": null,
147345
+ "averageExitPriceInBts": null,
147346
+ "netBtsFlow": null,
147347
+ "realizedCoverAmount": 0,
147348
+ "realizedGrossPnlInBts": 0,
147349
+ "updatedAt": null
147350
+ },
147351
+ "strategy": "short-mpa-bts",
147352
+ "status": "planned",
147353
+ "updatedAt": "2026-08-18T09:12:55.771Z"
147354
+ },
147355
+ {
147356
+ "accountName": "alice",
147357
+ "assets": {
147358
+ "collateral": {
147359
+ "id": "1.3.0",
147360
+ "precision": 5,
147361
+ "symbol": "BTS"
147362
+ },
147363
+ "mpa": {
147364
+ "id": "1.3.10",
147365
+ "precision": 5,
147366
+ "symbol": "HONEST.USD"
147367
+ }
147368
+ },
147369
+ "collateral": {
147370
+ "amount": 25000,
147371
+ "asset": "BTS",
147372
+ "targetCollateralRatio": null
147373
+ },
147374
+ "createdAt": "2026-08-18T09:13:49.015Z",
147375
+ "debt": {
147376
+ "amount": 10,
147377
+ "asset": "HONEST.USD"
147378
+ },
147379
+ "entry": {
147380
+ "expectedBtsProceeds": 10000,
147381
+ "sellPriceInBts": 1000,
147382
+ "averageExecutionPriceInBts": null,
147383
+ "fillCount": 0,
147384
+ "fillStatus": "unfilled",
147385
+ "filledReceiveAmount": 0,
147386
+ "filledSellAmount": 0,
147387
+ "isFullyFilled": false,
147388
+ "lastFillAt": null,
147389
+ "orderId": null,
147390
+ "orderOpen": false,
147391
+ "placedAt": null,
147392
+ "priceInBts": 1000,
147393
+ "receiveAsset": {
147394
+ "id": "1.3.0",
147395
+ "precision": 5,
147396
+ "symbol": "BTS"
147397
+ },
147398
+ "receiveAmountRemaining": 10000,
147399
+ "sellAsset": {
147400
+ "id": "1.3.10",
147401
+ "precision": 5,
147402
+ "symbol": "HONEST.USD"
147403
+ },
147404
+ "sellAmountRemaining": 10,
147405
+ "targetReceiveAmount": 10000,
147406
+ "targetSellAmount": 10,
147407
+ "tx": null
147408
+ },
147409
+ "events": [
147410
+ {
147411
+ "at": "2026-08-18T09:13:49.015Z",
147412
+ "details": {
147413
+ "collateralAmount": 25000,
147414
+ "debtAmount": 10,
147415
+ "mpaAsset": "HONEST.USD",
147416
+ "sellPriceInBts": 1000
147417
+ },
147418
+ "type": "position-created"
147419
+ }
147420
+ ],
147421
+ "exit": {
147422
+ "averageExecutionPriceInBts": null,
147423
+ "fillCount": 0,
147424
+ "fillStatus": "unfilled",
147425
+ "filledReceiveAmount": 0,
147426
+ "filledSellAmount": 0,
147427
+ "isFullyFilled": false,
147428
+ "lastFillAt": null,
147429
+ "orderId": null,
147430
+ "orderOpen": false,
147431
+ "placedAt": null,
147432
+ "priceInBts": null,
147433
+ "receiveAsset": {
147434
+ "id": "1.3.10",
147435
+ "precision": 5,
147436
+ "symbol": "HONEST.USD"
147437
+ },
147438
+ "receiveAmountRemaining": 0,
147439
+ "sellAsset": {
147440
+ "id": "1.3.0",
147441
+ "precision": 5,
147442
+ "symbol": "BTS"
147443
+ },
147444
+ "sellAmountRemaining": 0,
147445
+ "targetReceiveAmount": 0,
147446
+ "targetSellAmount": 0,
147447
+ "tx": null,
147448
+ "amountToCover": null,
147449
+ "buyPriceInBts": null,
147450
+ "estimatedGrossPnlInBts": null,
147451
+ "maxBtsToSpend": null
147452
+ },
147453
+ "id": "pos_1787044429015_skp9tkju",
147454
+ "market": "HONEST.USD/BTS",
147455
+ "onChain": null,
147456
+ "pnl": {
147457
+ "averageEntryPriceInBts": null,
147458
+ "averageExitPriceInBts": null,
147459
+ "netBtsFlow": null,
147460
+ "realizedCoverAmount": 0,
147461
+ "realizedGrossPnlInBts": 0,
147462
+ "updatedAt": null
147463
+ },
147464
+ "strategy": "short-mpa-bts",
147465
+ "status": "planned",
147466
+ "updatedAt": "2026-08-18T09:13:49.015Z"
147467
+ },
147468
+ {
147469
+ "accountName": "alice",
147470
+ "assets": {
147471
+ "collateral": {
147472
+ "id": "1.3.0",
147473
+ "precision": 5,
147474
+ "symbol": "BTS"
147475
+ },
147476
+ "mpa": {
147477
+ "id": "1.3.10",
147478
+ "precision": 5,
147479
+ "symbol": "HONEST.USD"
147480
+ }
147481
+ },
147482
+ "collateral": {
147483
+ "amount": 25000,
147484
+ "asset": "BTS",
147485
+ "targetCollateralRatio": null
147486
+ },
147487
+ "createdAt": "2026-08-18T09:22:46.339Z",
147488
+ "debt": {
147489
+ "amount": 10,
147490
+ "asset": "HONEST.USD"
147491
+ },
147492
+ "entry": {
147493
+ "expectedBtsProceeds": 10000,
147494
+ "sellPriceInBts": 1000,
147495
+ "averageExecutionPriceInBts": null,
147496
+ "fillCount": 0,
147497
+ "fillStatus": "unfilled",
147498
+ "filledReceiveAmount": 0,
147499
+ "filledSellAmount": 0,
147500
+ "isFullyFilled": false,
147501
+ "lastFillAt": null,
147502
+ "orderId": null,
147503
+ "orderOpen": false,
147504
+ "placedAt": null,
147505
+ "priceInBts": 1000,
147506
+ "receiveAsset": {
147507
+ "id": "1.3.0",
147508
+ "precision": 5,
147509
+ "symbol": "BTS"
147510
+ },
147511
+ "receiveAmountRemaining": 10000,
147512
+ "sellAsset": {
147513
+ "id": "1.3.10",
147514
+ "precision": 5,
147515
+ "symbol": "HONEST.USD"
147516
+ },
147517
+ "sellAmountRemaining": 10,
147518
+ "targetReceiveAmount": 10000,
147519
+ "targetSellAmount": 10,
147520
+ "tx": null
147521
+ },
147522
+ "events": [
147523
+ {
147524
+ "at": "2026-08-18T09:22:46.339Z",
147525
+ "details": {
147526
+ "collateralAmount": 25000,
147527
+ "debtAmount": 10,
147528
+ "mpaAsset": "HONEST.USD",
147529
+ "sellPriceInBts": 1000
147530
+ },
147531
+ "type": "position-created"
147532
+ }
147533
+ ],
147534
+ "exit": {
147535
+ "averageExecutionPriceInBts": null,
147536
+ "fillCount": 0,
147537
+ "fillStatus": "unfilled",
147538
+ "filledReceiveAmount": 0,
147539
+ "filledSellAmount": 0,
147540
+ "isFullyFilled": false,
147541
+ "lastFillAt": null,
147542
+ "orderId": null,
147543
+ "orderOpen": false,
147544
+ "placedAt": null,
147545
+ "priceInBts": null,
147546
+ "receiveAsset": {
147547
+ "id": "1.3.10",
147548
+ "precision": 5,
147549
+ "symbol": "HONEST.USD"
147550
+ },
147551
+ "receiveAmountRemaining": 0,
147552
+ "sellAsset": {
147553
+ "id": "1.3.0",
147554
+ "precision": 5,
147555
+ "symbol": "BTS"
147556
+ },
147557
+ "sellAmountRemaining": 0,
147558
+ "targetReceiveAmount": 0,
147559
+ "targetSellAmount": 0,
147560
+ "tx": null,
147561
+ "amountToCover": null,
147562
+ "buyPriceInBts": null,
147563
+ "estimatedGrossPnlInBts": null,
147564
+ "maxBtsToSpend": null
147565
+ },
147566
+ "id": "pos_1787044966339_hd7g7jo4",
147567
+ "market": "HONEST.USD/BTS",
147568
+ "onChain": null,
147569
+ "pnl": {
147570
+ "averageEntryPriceInBts": null,
147571
+ "averageExitPriceInBts": null,
147572
+ "netBtsFlow": null,
147573
+ "realizedCoverAmount": 0,
147574
+ "realizedGrossPnlInBts": 0,
147575
+ "updatedAt": null
147576
+ },
147577
+ "strategy": "short-mpa-bts",
147578
+ "status": "planned",
147579
+ "updatedAt": "2026-08-18T09:22:46.339Z"
147580
+ },
147581
+ {
147582
+ "accountName": "alice",
147583
+ "assets": {
147584
+ "collateral": {
147585
+ "id": "1.3.0",
147586
+ "precision": 5,
147587
+ "symbol": "BTS"
147588
+ },
147589
+ "mpa": {
147590
+ "id": "1.3.10",
147591
+ "precision": 5,
147592
+ "symbol": "HONEST.USD"
147593
+ }
147594
+ },
147595
+ "collateral": {
147596
+ "amount": 25000,
147597
+ "asset": "BTS",
147598
+ "targetCollateralRatio": null
147599
+ },
147600
+ "createdAt": "2026-08-18T09:26:25.942Z",
147601
+ "debt": {
147602
+ "amount": 10,
147603
+ "asset": "HONEST.USD"
147604
+ },
147605
+ "entry": {
147606
+ "expectedBtsProceeds": 10000,
147607
+ "sellPriceInBts": 1000,
147608
+ "averageExecutionPriceInBts": null,
147609
+ "fillCount": 0,
147610
+ "fillStatus": "unfilled",
147611
+ "filledReceiveAmount": 0,
147612
+ "filledSellAmount": 0,
147613
+ "isFullyFilled": false,
147614
+ "lastFillAt": null,
147615
+ "orderId": null,
147616
+ "orderOpen": false,
147617
+ "placedAt": null,
147618
+ "priceInBts": 1000,
147619
+ "receiveAsset": {
147620
+ "id": "1.3.0",
147621
+ "precision": 5,
147622
+ "symbol": "BTS"
147623
+ },
147624
+ "receiveAmountRemaining": 10000,
147625
+ "sellAsset": {
147626
+ "id": "1.3.10",
147627
+ "precision": 5,
147628
+ "symbol": "HONEST.USD"
147629
+ },
147630
+ "sellAmountRemaining": 10,
147631
+ "targetReceiveAmount": 10000,
147632
+ "targetSellAmount": 10,
147633
+ "tx": null
147634
+ },
147635
+ "events": [
147636
+ {
147637
+ "at": "2026-08-18T09:26:25.942Z",
147638
+ "details": {
147639
+ "collateralAmount": 25000,
147640
+ "debtAmount": 10,
147641
+ "mpaAsset": "HONEST.USD",
147642
+ "sellPriceInBts": 1000
147643
+ },
147644
+ "type": "position-created"
147645
+ }
147646
+ ],
147647
+ "exit": {
147648
+ "averageExecutionPriceInBts": null,
147649
+ "fillCount": 0,
147650
+ "fillStatus": "unfilled",
147651
+ "filledReceiveAmount": 0,
147652
+ "filledSellAmount": 0,
147653
+ "isFullyFilled": false,
147654
+ "lastFillAt": null,
147655
+ "orderId": null,
147656
+ "orderOpen": false,
147657
+ "placedAt": null,
147658
+ "priceInBts": null,
147659
+ "receiveAsset": {
147660
+ "id": "1.3.10",
147661
+ "precision": 5,
147662
+ "symbol": "HONEST.USD"
147663
+ },
147664
+ "receiveAmountRemaining": 0,
147665
+ "sellAsset": {
147666
+ "id": "1.3.0",
147667
+ "precision": 5,
147668
+ "symbol": "BTS"
147669
+ },
147670
+ "sellAmountRemaining": 0,
147671
+ "targetReceiveAmount": 0,
147672
+ "targetSellAmount": 0,
147673
+ "tx": null,
147674
+ "amountToCover": null,
147675
+ "buyPriceInBts": null,
147676
+ "estimatedGrossPnlInBts": null,
147677
+ "maxBtsToSpend": null
147678
+ },
147679
+ "id": "pos_1787045185942_v5ujz5ll",
147680
+ "market": "HONEST.USD/BTS",
147681
+ "onChain": null,
147682
+ "pnl": {
147683
+ "averageEntryPriceInBts": null,
147684
+ "averageExitPriceInBts": null,
147685
+ "netBtsFlow": null,
147686
+ "realizedCoverAmount": 0,
147687
+ "realizedGrossPnlInBts": 0,
147688
+ "updatedAt": null
147689
+ },
147690
+ "strategy": "short-mpa-bts",
147691
+ "status": "planned",
147692
+ "updatedAt": "2026-08-18T09:26:25.942Z"
147693
+ },
147694
+ {
147695
+ "accountName": "alice",
147696
+ "assets": {
147697
+ "collateral": {
147698
+ "id": "1.3.0",
147699
+ "precision": 5,
147700
+ "symbol": "BTS"
147701
+ },
147702
+ "mpa": {
147703
+ "id": "1.3.10",
147704
+ "precision": 5,
147705
+ "symbol": "HONEST.USD"
147706
+ }
147707
+ },
147708
+ "collateral": {
147709
+ "amount": 25000,
147710
+ "asset": "BTS",
147711
+ "targetCollateralRatio": null
147712
+ },
147713
+ "createdAt": "2026-08-18T09:40:03.343Z",
147714
+ "debt": {
147715
+ "amount": 10,
147716
+ "asset": "HONEST.USD"
147717
+ },
147718
+ "entry": {
147719
+ "expectedBtsProceeds": 10000,
147720
+ "sellPriceInBts": 1000,
147721
+ "averageExecutionPriceInBts": null,
147722
+ "fillCount": 0,
147723
+ "fillStatus": "unfilled",
147724
+ "filledReceiveAmount": 0,
147725
+ "filledSellAmount": 0,
147726
+ "isFullyFilled": false,
147727
+ "lastFillAt": null,
147728
+ "orderId": null,
147729
+ "orderOpen": false,
147730
+ "placedAt": null,
147731
+ "priceInBts": 1000,
147732
+ "receiveAsset": {
147733
+ "id": "1.3.0",
147734
+ "precision": 5,
147735
+ "symbol": "BTS"
147736
+ },
147737
+ "receiveAmountRemaining": 10000,
147738
+ "sellAsset": {
147739
+ "id": "1.3.10",
147740
+ "precision": 5,
147741
+ "symbol": "HONEST.USD"
147742
+ },
147743
+ "sellAmountRemaining": 10,
147744
+ "targetReceiveAmount": 10000,
147745
+ "targetSellAmount": 10,
147746
+ "tx": null
147747
+ },
147748
+ "events": [
147749
+ {
147750
+ "at": "2026-08-18T09:40:03.343Z",
147751
+ "details": {
147752
+ "collateralAmount": 25000,
147753
+ "debtAmount": 10,
147754
+ "mpaAsset": "HONEST.USD",
147755
+ "sellPriceInBts": 1000
147756
+ },
147757
+ "type": "position-created"
147758
+ }
147759
+ ],
147760
+ "exit": {
147761
+ "averageExecutionPriceInBts": null,
147762
+ "fillCount": 0,
147763
+ "fillStatus": "unfilled",
147764
+ "filledReceiveAmount": 0,
147765
+ "filledSellAmount": 0,
147766
+ "isFullyFilled": false,
147767
+ "lastFillAt": null,
147768
+ "orderId": null,
147769
+ "orderOpen": false,
147770
+ "placedAt": null,
147771
+ "priceInBts": null,
147772
+ "receiveAsset": {
147773
+ "id": "1.3.10",
147774
+ "precision": 5,
147775
+ "symbol": "HONEST.USD"
147776
+ },
147777
+ "receiveAmountRemaining": 0,
147778
+ "sellAsset": {
147779
+ "id": "1.3.0",
147780
+ "precision": 5,
147781
+ "symbol": "BTS"
147782
+ },
147783
+ "sellAmountRemaining": 0,
147784
+ "targetReceiveAmount": 0,
147785
+ "targetSellAmount": 0,
147786
+ "tx": null,
147787
+ "amountToCover": null,
147788
+ "buyPriceInBts": null,
147789
+ "estimatedGrossPnlInBts": null,
147790
+ "maxBtsToSpend": null
147791
+ },
147792
+ "id": "pos_1787046003343_kcbuoowo",
147793
+ "market": "HONEST.USD/BTS",
147794
+ "onChain": null,
147795
+ "pnl": {
147796
+ "averageEntryPriceInBts": null,
147797
+ "averageExitPriceInBts": null,
147798
+ "netBtsFlow": null,
147799
+ "realizedCoverAmount": 0,
147800
+ "realizedGrossPnlInBts": 0,
147801
+ "updatedAt": null
147802
+ },
147803
+ "strategy": "short-mpa-bts",
147804
+ "status": "planned",
147805
+ "updatedAt": "2026-08-18T09:40:03.343Z"
147806
+ },
147807
+ {
147808
+ "accountName": "alice",
147809
+ "assets": {
147810
+ "collateral": {
147811
+ "id": "1.3.0",
147812
+ "precision": 5,
147813
+ "symbol": "BTS"
147814
+ },
147815
+ "mpa": {
147816
+ "id": "1.3.10",
147817
+ "precision": 5,
147818
+ "symbol": "HONEST.USD"
147819
+ }
147820
+ },
147821
+ "collateral": {
147822
+ "amount": 25000,
147823
+ "asset": "BTS",
147824
+ "targetCollateralRatio": null
147825
+ },
147826
+ "createdAt": "2026-08-18T09:50:10.636Z",
147827
+ "debt": {
147828
+ "amount": 10,
147829
+ "asset": "HONEST.USD"
147830
+ },
147831
+ "entry": {
147832
+ "expectedBtsProceeds": 10000,
147833
+ "sellPriceInBts": 1000,
147834
+ "averageExecutionPriceInBts": null,
147835
+ "fillCount": 0,
147836
+ "fillStatus": "unfilled",
147837
+ "filledReceiveAmount": 0,
147838
+ "filledSellAmount": 0,
147839
+ "isFullyFilled": false,
147840
+ "lastFillAt": null,
147841
+ "orderId": null,
147842
+ "orderOpen": false,
147843
+ "placedAt": null,
147844
+ "priceInBts": 1000,
147845
+ "receiveAsset": {
147846
+ "id": "1.3.0",
147847
+ "precision": 5,
147848
+ "symbol": "BTS"
147849
+ },
147850
+ "receiveAmountRemaining": 10000,
147851
+ "sellAsset": {
147852
+ "id": "1.3.10",
147853
+ "precision": 5,
147854
+ "symbol": "HONEST.USD"
147855
+ },
147856
+ "sellAmountRemaining": 10,
147857
+ "targetReceiveAmount": 10000,
147858
+ "targetSellAmount": 10,
147859
+ "tx": null
147860
+ },
147861
+ "events": [
147862
+ {
147863
+ "at": "2026-08-18T09:50:10.636Z",
147864
+ "details": {
147865
+ "collateralAmount": 25000,
147866
+ "debtAmount": 10,
147867
+ "mpaAsset": "HONEST.USD",
147868
+ "sellPriceInBts": 1000
147869
+ },
147870
+ "type": "position-created"
147871
+ }
147872
+ ],
147873
+ "exit": {
147874
+ "averageExecutionPriceInBts": null,
147875
+ "fillCount": 0,
147876
+ "fillStatus": "unfilled",
147877
+ "filledReceiveAmount": 0,
147878
+ "filledSellAmount": 0,
147879
+ "isFullyFilled": false,
147880
+ "lastFillAt": null,
147881
+ "orderId": null,
147882
+ "orderOpen": false,
147883
+ "placedAt": null,
147884
+ "priceInBts": null,
147885
+ "receiveAsset": {
147886
+ "id": "1.3.10",
147887
+ "precision": 5,
147888
+ "symbol": "HONEST.USD"
147889
+ },
147890
+ "receiveAmountRemaining": 0,
147891
+ "sellAsset": {
147892
+ "id": "1.3.0",
147893
+ "precision": 5,
147894
+ "symbol": "BTS"
147895
+ },
147896
+ "sellAmountRemaining": 0,
147897
+ "targetReceiveAmount": 0,
147898
+ "targetSellAmount": 0,
147899
+ "tx": null,
147900
+ "amountToCover": null,
147901
+ "buyPriceInBts": null,
147902
+ "estimatedGrossPnlInBts": null,
147903
+ "maxBtsToSpend": null
147904
+ },
147905
+ "id": "pos_1787046610636_y2p5bvho",
147906
+ "market": "HONEST.USD/BTS",
147907
+ "onChain": null,
147908
+ "pnl": {
147909
+ "averageEntryPriceInBts": null,
147910
+ "averageExitPriceInBts": null,
147911
+ "netBtsFlow": null,
147912
+ "realizedCoverAmount": 0,
147913
+ "realizedGrossPnlInBts": 0,
147914
+ "updatedAt": null
147915
+ },
147916
+ "strategy": "short-mpa-bts",
147917
+ "status": "planned",
147918
+ "updatedAt": "2026-08-18T09:50:10.636Z"
147919
+ },
147920
+ {
147921
+ "accountName": "alice",
147922
+ "assets": {
147923
+ "collateral": {
147924
+ "id": "1.3.0",
147925
+ "precision": 5,
147926
+ "symbol": "BTS"
147927
+ },
147928
+ "mpa": {
147929
+ "id": "1.3.10",
147930
+ "precision": 5,
147931
+ "symbol": "HONEST.USD"
147932
+ }
147933
+ },
147934
+ "collateral": {
147935
+ "amount": 25000,
147936
+ "asset": "BTS",
147937
+ "targetCollateralRatio": null
147938
+ },
147939
+ "createdAt": "2026-08-18T09:55:37.731Z",
147940
+ "debt": {
147941
+ "amount": 10,
147942
+ "asset": "HONEST.USD"
147943
+ },
147944
+ "entry": {
147945
+ "expectedBtsProceeds": 10000,
147946
+ "sellPriceInBts": 1000,
147947
+ "averageExecutionPriceInBts": null,
147948
+ "fillCount": 0,
147949
+ "fillStatus": "unfilled",
147950
+ "filledReceiveAmount": 0,
147951
+ "filledSellAmount": 0,
147952
+ "isFullyFilled": false,
147953
+ "lastFillAt": null,
147954
+ "orderId": null,
147955
+ "orderOpen": false,
147956
+ "placedAt": null,
147957
+ "priceInBts": 1000,
147958
+ "receiveAsset": {
147959
+ "id": "1.3.0",
147960
+ "precision": 5,
147961
+ "symbol": "BTS"
147962
+ },
147963
+ "receiveAmountRemaining": 10000,
147964
+ "sellAsset": {
147965
+ "id": "1.3.10",
147966
+ "precision": 5,
147967
+ "symbol": "HONEST.USD"
147968
+ },
147969
+ "sellAmountRemaining": 10,
147970
+ "targetReceiveAmount": 10000,
147971
+ "targetSellAmount": 10,
147972
+ "tx": null
147973
+ },
147974
+ "events": [
147975
+ {
147976
+ "at": "2026-08-18T09:55:37.731Z",
147977
+ "details": {
147978
+ "collateralAmount": 25000,
147979
+ "debtAmount": 10,
147980
+ "mpaAsset": "HONEST.USD",
147981
+ "sellPriceInBts": 1000
147982
+ },
147983
+ "type": "position-created"
147984
+ }
147985
+ ],
147986
+ "exit": {
147987
+ "averageExecutionPriceInBts": null,
147988
+ "fillCount": 0,
147989
+ "fillStatus": "unfilled",
147990
+ "filledReceiveAmount": 0,
147991
+ "filledSellAmount": 0,
147992
+ "isFullyFilled": false,
147993
+ "lastFillAt": null,
147994
+ "orderId": null,
147995
+ "orderOpen": false,
147996
+ "placedAt": null,
147997
+ "priceInBts": null,
147998
+ "receiveAsset": {
147999
+ "id": "1.3.10",
148000
+ "precision": 5,
148001
+ "symbol": "HONEST.USD"
148002
+ },
148003
+ "receiveAmountRemaining": 0,
148004
+ "sellAsset": {
148005
+ "id": "1.3.0",
148006
+ "precision": 5,
148007
+ "symbol": "BTS"
148008
+ },
148009
+ "sellAmountRemaining": 0,
148010
+ "targetReceiveAmount": 0,
148011
+ "targetSellAmount": 0,
148012
+ "tx": null,
148013
+ "amountToCover": null,
148014
+ "buyPriceInBts": null,
148015
+ "estimatedGrossPnlInBts": null,
148016
+ "maxBtsToSpend": null
148017
+ },
148018
+ "id": "pos_1787046937731_p6svm52i",
148019
+ "market": "HONEST.USD/BTS",
148020
+ "onChain": null,
148021
+ "pnl": {
148022
+ "averageEntryPriceInBts": null,
148023
+ "averageExitPriceInBts": null,
148024
+ "netBtsFlow": null,
148025
+ "realizedCoverAmount": 0,
148026
+ "realizedGrossPnlInBts": 0,
148027
+ "updatedAt": null
148028
+ },
148029
+ "strategy": "short-mpa-bts",
148030
+ "status": "planned",
148031
+ "updatedAt": "2026-08-18T09:55:37.731Z"
144642
148032
  }
144643
148033
  ],
144644
- "updatedAt": "2026-08-10T20:24:20.102Z",
148034
+ "updatedAt": "2026-08-18T09:55:37.731Z",
144645
148035
  "version": 1
144646
148036
  }