1.0.2 • Published 2 years ago

@moneymade/moneymade-widgets v1.0.2

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

Installation

Just run the following command at the root of your project:

npm install moneymade-widgets

Usage

First you need to wrap your project with MoneymadeEmbed component

import { MoneymadeEmbed } from 'moneymade-widgets' 
<MoneymadeEmbed>
  {children}
</MoneymadeEmbed>

Examples

Our Comonents:

  • TickerSimple
  • ArticleSnapshot
  • CategoryRoundup
  • Monetized
  • TickerTable
  • InlineData
  • TickerExpanded

Basic example:

import { 
  InlineData,
  Monetized,
  TickerTable,
  CategoryRoundup,
  TickerExpanded,
  ArticleSnapshot,
  TickerSimple } from 'moneymade-widgets' 

TickerSimple

 <TickerSimple symbol="AAPL" />
PropsTypeDefaultDescription
symbolstring-Set ticker to display
schemastring-Set schema to display

ArticleSnapshot

  <ArticleSnapshot title="Test" symbols={['AAPL', 'BRK.A', 'MSGE']} />
PropsTypeDefaultDescription
symbolsstring[]-Set array with tickers
titlestring''Set text
schemastring-Set schema to display

CategoryRoundup

  <CategoryRoundup title="Test" symbols={['AAPL', 'BRK.A', 'MSGE']} />
PropsTypeDefaultDescription
symbolsstring[]-Set array with tickers
titlestring''Set text
schemastring-Set schema to display

Monetized

  <Monetized symbols={['AAPL', 'MSGE']} timeframe="1Y" />
PropsTypeDefaultDescription
symbolsstring[]-Set array with tickers
timeframestring24H, 7D, 30D, 1Y, 5Y, 10YYou need select one of the proposed default values
schemastring-Set schema to display

InlineData

  <InlineData symbol="FB" dataPoint="5yr-average-annual-return" fontSize="20" />
PropsTypeDefaultDescription
symbolstring-Set ticker to display
schemastring-Set schema to display
fontSizestring12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32You need select one of the proposed default values
dataPointstringmarket-cap, price, ytd-return,todays-return, last-5-trading-days-return, last-52-weeks-return, 5yr-average-annual-return, 10yr-average-annual-returnYou need select one of the proposed default values

TickerExpanded

  <TickerExpanded symbol="FB" />
PropsTypeDefaultDescription
symbolstring-Set ticker to display
schemastring-Set schema to display