1.0.1 • Published 3 months ago

charty0x v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

charty0x

Crypto Chart Generator

This is a simple JavaScript tool for generating cryptocurrency price charts.

How to Use

  1. Replace the cryptoData object in crypto_chart_generator.js with your cryptocurrency price data.
  2. Use a charting library of your choice (e.g., Chart.js, Plotly.js, etc.) to create the chart.
  3. Customize the chart options according to your preferences.
  4. Run the script in a web browser environment.

Example

Suppose you have the following cryptocurrency price data:

const cryptoData = {
    dates: ['2024-03-01', '2024-03-02', '2024-03-03', '2024-03-04', '2024-03-05'],
    prices: [100, 120, 110, 130, 125]
};
1.0.1

3 months ago