Skip to content

candlestick-chart

trading • trader • financial • markets • portfolio • assets • prices • value • valuation • commodities • currencies • currency • exchange • hedge fund • statistics • analytics • diagram • graph

Created:

v0.239.0

Last changed:

v0.239.0

Contributors:

danielbayley
html
<i data-lucide="candlestick-chart"></i>
tsx
import { CandlestickChart } from 'lucide-react';

const App = () => {
  return (
    <CandlestickChart />
  );
};

export default App;
vue
<script setup>
  import { CandlestickChart } from 'lucide-vue-next';
</script>

<template>
  <CandlestickChart />
</template>
svelte
<script>
import { CandlestickChart } from 'lucide-svelte';
</script>

<CandlestickChart />
tsx
import { CandlestickChart } from 'lucide-preact';

const App = () => {
  return (
    <CandlestickChart />
  );
};

export default App;
tsx
import { CandlestickChart } from 'lucide-solid';

const App = () => {
  return (
    <CandlestickChart />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, CandlestickChart } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ CandlestickChart })
  ],
})

// app.component.html
<lucide-icon name="candlestick-chart"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-candlestick-chart"></div>