Bitcoin Forum
May 02, 2024, 01:31:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Announcements (Altcoins) / [ANN] Kash - kashcore.org - the evolution of cash on: January 02, 2020, 04:26:14 PM







Website | Announcements | Twitter | GitHub | Discord


Latest Client: Kash v0.15.0.1 Release - Download here.

Based on the Dash project, Kash is the evolution of cash, an open-source, peer-to-peer cryptocurrency with a strong focus on the payments industry. Kash offers a form of money that is anonymous, portable, inexpensive, and fast. It can be spent securely both online and in-person with only minimal transaction fees. Kash currently also includes a second-layer network of masternodes to facilitate instant transactions and private transactions.

Kash specification:

- Kash supports instant transactions and privacy using decentralized technology
- 2 MB blocks + meager fees
- Kash has no premine
- Total coins will most likely be near 18.9 million
- Coins will cease to be generated near the year 2300
- Kash uses the X11 algorithm for mining

Miscellaneous:

Downloads: Stable release binaries, previous releases and source code:
https://github.com/jsb4ch/kash/releases

Exchanges:
KASH-USDT https://jsmex.io/en/trading/KASHUSDT
KASH-BTC https://jsmex.io/en/trading/KASHBTC
KASH-ETH https://jsmex.io/en/trading/KASHETH

Mining Pools:
0769.it: -a x11 -o stratum+tcp://pool.0769.it:3533 -u <WALLET> -p c=KASH
mcmpool.eu: -a x11 -o stratum+tcp://mcmpool.eu:<PORT> -u <WALLET_ADDRESS> -p c=KASH

Kash Merchant Directory:
Coming Soon

Other tools
Blockchain Explorer: https://explorer.kashcore.org
2  Alternate cryptocurrencies / Bounties (Altcoins) / [BOUNTY] 🔥 JSMEX the first programmable exchange 🔥 on: December 23, 2019, 12:21:33 AM
BOUNTY CLOSED
3  Alternate cryptocurrencies / Service Announcements (Altcoins) / [ANN] 🔥 JSMEX the first programmable exchange 🔥 on: December 16, 2019, 01:08:45 PM
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
        }
      }
    }
  }
}

Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!