Bitcoin Forum
May 13, 2024, 05:03:36 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [ANN] 🔥 JSMEX the first programmable exchange 🔥  (Read 254 times)
jsb4ch (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 13
Merit: 0

jsmex owner


View Profile WWW
December 16, 2019, 01:08:45 PM
Last edit: January 21, 2020, 09:54:59 AM by jsb4ch
 #1

image loading...


JSMEX.io, the first programmable cryptocurrency exchange.
In addition to the standard functionalities, jsmex is programmable; this means that users can deploy trading strategies in the account strategy section, and then those will be executed server-side, reducing latency drastically.
Other exchanges do not commonly use this technology, and We have developed a secure way that can execute third-party code in a runtime process using isolated environments.

Users can use strategies to build safe measures, advanced trading bots, or manage their market price.
We have fully integrated ccxt in our custom environment, so Users can easily port any current strategy based on ccxt to jsmex; of course, HTTP requests are restricted and are open only for jsmex.io domains.

Listing requests or market-makers email jsb4ch@jsmex.io

Check out jsmex-trader-sdk on npm, our trading strategy sdk based on ccxt.


image loading...     image loading...
Demo preview


Sample panic close strategy
Code:
module.exports = class extends (global.Trader || require('jsmex-trader-sdk')) {
  constructor (options) {
    super(options)
    this.defaultSymbol = this.options.defaultSymbol
  }

  /**
     * SamplePanicCloseStrategy on tick method
     *
     * @author jsb4ch <jsb4ch@jsmex.io>
     * @since 1.1.0
    */
  async onTick () {
    try {
      let close = this.close()
      let yesterdayOpen = this.open(24)
      let rate = (
        close.minus(yesterdayOpen)
      ).div(yesterdayOpen)
      if (rate.lte(-0.2)) {
        return this.cancelAllOrders()
      } else {
        global.log(rate.toNumber())
      }
    } catch (err) {
      global.error(err)
    }
  }

  /**
     * SamplePanicCloseStrategy static options
     *
     * @author jsb4ch <jsb4ch@jsmex.io>
     * @since 1.1.0
    */
  static get options () {
    return {
      ...this.defaultOptions,
      defaultSymbol: 'JMX/USDT',
      exchanges: {
        jsmex: {
          wwwDomain: 'jsmex.io',
          apiDomain: 'api.jsmex.io'
        }
      },
      ccxt: {
        fetchOHLCV: {
          resolution: '10m',
          limit: 500
        }
      }
    }
  }
}


jsmex.io is the first programmable cryptocurrency exchange
1715576616
Hero Member
*
Offline Offline

Posts: 1715576616

View Profile Personal Message (Offline)

Ignore
1715576616
Reply with quote  #2

1715576616
Report to moderator
It is a common myth that Bitcoin is ruled by a majority of miners. This is not true. Bitcoin miners "vote" on the ordering of transactions, but that's all they do. They can't vote to change the network rules.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
jsb4ch (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 13
Merit: 0

jsmex owner


View Profile WWW
December 26, 2019, 02:24:11 PM
 #2


jsmex.io is the first programmable cryptocurrency exchange
jsb4ch (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 13
Merit: 0

jsmex owner


View Profile WWW
January 10, 2020, 01:45:02 AM
Last edit: February 13, 2020, 05:07:10 PM by jsb4ch
 #3



Things are escalating quickly! We are pleased to announce the introduction of the referral program: promoting the exchange with the referral link in your profile section, you earn 20% of all the commissions produced by your referred accounts.
Sign up now http://signup.jsmex.io

https://twitter.com/jsmexchange/status/1215424047154110465



jsmex.io is the first programmable cryptocurrency exchange
jsb4ch (OP)
Copper Member
Newbie
*
Offline Offline

Activity: 13
Merit: 0

jsmex owner


View Profile WWW
January 24, 2020, 04:13:21 PM
 #4

It is a pleasure to announce our latest release:

We have released a new appealing strategy editor in strategy account section


We have added a small dedicated Key-value storage that will help to associate your strategy order levels with pending orders id, learn more about it in the jsmex trading sdk documentation.

We have published strategy plugins; you can create additional files which are imported in the global scope of the isolated environment before the execution of your strategy.

We have added a market page with more information about market status, trading fees, and references of the listed coins to bitcointalk, coinmarketcap, cryptocompare, coingecko, and coinpaprika.

https://twitter.com/jsmexchange/status/1220740746145337346
Show us some love signup now


jsmex.io is the first programmable cryptocurrency exchange
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!