0.1.24 • Published 3 years ago
@quantgate-systems/toplist v0.1.24
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
3 years ago
0.1.21
3 years ago
0.1.22
3 years ago
0.1.23
3 years ago
0.1.24
3 years ago
0.1.17
3 years ago
0.1.18
3 years ago
0.1.19
3 years ago
0.1.12
3 years ago
0.1.13
3 years ago
0.1.14
3 years ago
0.1.15
3 years ago
0.1.16
3 years ago
0.1.11
3 years ago
0.1.10
3 years ago
0.1.9
3 years ago
0.1.8
3 years ago
0.1.7
3 years ago
0.1.6
3 years ago
0.1.5
3 years ago
0.1.4
3 years ago
0.1.3
3 years ago
0.1.2
3 years ago
0.1.1
3 years ago