0.1.24 • Published 2 years ago

@quantgate-systems/toplist v0.1.24

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Note: 10,499,785 live websites use react

Installation

npm i --save @quantgate-systems/toplist or if you are using yarn, yarn add @quantgate-systems/toplist

Usage

In order to use Toplist, create a user on Pilot application and pass your tokens to TopList component

create-react-app

import TopList from "@quantgate-systems/toplist";

const onItemClick = (ToplistItem) => {
  console.log(ToplistItem);
};

return (
  <TopList
    token={"BearerToken from our system"}
    refreshToken={"RefreshToken from our system"}
    brokerName={"simulation-mode" || "demo-mode" || "signals-only" || 
                "paper-forex" || "alt5" || "bitfinex" || "binance" || 
                "bittrex" || "bitstamp" || "gemini" || "kraken" || "liquid"}
    mini={true || false} // render mini component / Optional
    onItemClick={onItemClick}
  />
);

next.js

import dynamic from "next/dynamic";

const TopList = dynamic(() => import("@quantgate-systems/toplist"));

const onItemClick = (ToplistItem) => {
  console.log(ToplistItem);
};

return (
  <TopList
    token={"BearerToken from our system"}
    refreshToken={"RefreshToken from our system"}
    brokerName={"simulation-mode" || "demo-mode" || "signals-only" || 
                "paper-forex" || "alt5" || "bitfinex" || "binance" || 
                "bittrex" || "bitstamp" || "gemini" || "kraken" || "liquid"}
    mini={true || false} // render mini component / Optional
    onItemClick={onItemClick}
  />
);

Note:

brokerName could be one of the following and it will return a Toplist with signals:

  • Traditional Brokerages

    • demo-mode
    • simulation-mode
    • signals-only
    • paper-forex
  • Digital Exchanges

    • alt5
    • bitfinex
    • binance
    • bittrex
    • bitstamp
    • gemini
    • kraken
    • liquid
0.1.20

2 years ago

0.1.21

2 years ago

0.1.22

2 years ago

0.1.23

2 years ago

0.1.24

2 years ago

0.1.17

2 years ago

0.1.18

2 years ago

0.1.19

2 years ago

0.1.12

2 years ago

0.1.13

2 years ago

0.1.14

2 years ago

0.1.15

2 years ago

0.1.16

2 years ago

0.1.11

2 years ago

0.1.10

2 years ago

0.1.9

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago